Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1308629
  • 博文数量: 273
  • 博客积分: 5865
  • 博客等级: 准将
  • 技术积分: 3280
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-11 10:01
文章分类

全部博文(273)

文章存档

2015年(33)

2014年(11)

2013年(11)

2012年(136)

2011年(32)

2010年(50)

分类:

2010-11-22 21:53:19

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 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.

           

         #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 Browser to connect to mysql as shown below.


             

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


          

come from

阅读(3009) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~