>데이터 베이스 >MySQL 튜토리얼 >在ubuntu上安装mysql : How to install MySQL on ubuntu(转)

在ubuntu上安装mysql : How to install MySQL on ubuntu(转)

WBOY
WBOY원래의
2016-06-07 15:02:481318검색

How to install MySQL On Ubuntu Follow the instructions in this article to help you install MySQL and MySQL Query Browser on Ubuntu. Installing MySQL on Ubuntu: To open the Terminal, go to Application Accessories Terminal Type the following

How to install MySQL On Ubuntu

Follow the instructions in this article to help you install MySQL and MySQL Query Browser on Ubuntu.

Installing MySQL on Ubuntu:

        To open the Terminal, go to Application > Accessories > Terminal


          在ubuntu上安装mysql : How to install MySQL on ubuntu(转)

          Type the following command at terminal.

  •  $sudo apt-get install mysql-server

             To be able to connect to mysql from internet, remove the restriction on the below file.

  • Open the file by typing the following command at terminal prompt.

          $gksudo gedit /etc/mysql/my.cnf

  • Find the line bind-address = 127.0.0.1 and comment it out as shown below.

            在ubuntu上安装mysql : How to install MySQL on ubuntu(转)

         #bind-address           = 127.0.0.1 

  • mysql comes with no root password. To set the root password, type:

        $mysqladmin -u root password your-new-password

          $sudo /etc/init.d/mysql restart

  • Install mysql query browser

         $sudo apt-get install mysql-query-browser

  • After installing, go to Applications > Programming > MySQL Query Browserto connect to mysql as shown below.


              在ubuntu上安装mysql : How to install MySQL on ubuntu(转)

             Enter Server Hostname,Username and Password. Click onConnect and MySQL is now installed on Ubuntu.


            在ubuntu上安装mysql : How to install MySQL on ubuntu(转)


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.