首頁  >  文章  >  資料庫  >  ubuntu安裝mysql的方法

ubuntu安裝mysql的方法

angryTom
angryTom原創
2020-02-21 18:08:282795瀏覽

ubuntu安裝mysql的方法

ubuntu安裝mysql的方法

#先執行下面三條指令:

sudo apt-get install mysql-server
sudo apt install mysql-client
sudo apt install libmysqlclient-dev

安裝成功後可以透過下面的指令測試是否安裝成功:

sudo netstat -tap | grep mysql

出現下列資訊證明安裝成功: 

 ubuntu安裝mysql的方法

可以透過下列指令進入mysql服務:

mysql -uroot -p你的密码

(免費學習影片教學推薦:mysql影片教學

現在設定mysql允許遠端訪問,首先編輯檔案/etc/mysql/mysql.conf.d/mysqld.cnf:

sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf

註解掉bind-address = 127.0.0.1: 

ubuntu安裝mysql的方法

儲存退出,然後進入mysql服務,執行授權指令:

grant all on *.* to root@'%' identified by '你的密码' with grant option;
flush privileges;

然後執行quit指令退出mysql服務,執行以下指令重啟mysql:

sudo service mysql restart

現在在windows下可以使用navicat遠端連線ubuntu下的mysql服務。

以上是ubuntu安裝mysql的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn