ubuntu 16.04下安裝MySQL

來源:互聯網
上載者:User

標籤:roo   ubuntu   get   bsp   ppa   控制   res   完成後   自動安裝   

1. 控制台運行以下命令即可進行MySQL安裝:

sudo apt-get install mysql-server

上述命令會安裝以下包: 

  • apparmor 
  • mysql-client-5.7 
  • mysql-common 
  • mysql-server 
  • mysql-server-5.7 
  • mysql-server-core-5.7 

因此無需再安裝mysql-client等。安裝過程會提示設定mysql root使用者的密碼,設定完成後等待自動安裝即可。預設安裝完成就啟動了mysql。

 

2. 確認是否啟動成功(測試是否安裝成功):

sudo netstat -tap | grep mysql 

 

3. 進入MySQL服務:

mysql -uroot -p[你的密碼]

 

4. 設定mysql允許遠端存取

  • 首先編輯檔案/etc/mysql/mysql.conf.d/mysqld.cnf,注釋掉bind-address = 127.0.0.1
    sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf

 

  • 儲存退出,然後進入mysql服務,執行授權命令:
    grant all on *.* to [email protected]‘%‘ identified by ‘你的密碼‘ with grant option;flush privileges; 

 

  • 然後執行quit命令退出mysql服務,執行如下命令重啟mysql:
    service mysql restart

 

  • 在Windows下使用navicat遠端連線Ubuntu下的MySQL服務:

 

ubuntu 16.04下安裝MySQL

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.