首頁 > 軟體

Ubuntu系統安裝與設定MySQL

2022-06-01 14:06:15

一、安裝MySQL

Ubuntu中,預設情況下,只有最新版本的MySQL包含在APT軟體包儲存庫中,要安裝它,只需更新伺服器上的包索引並安裝預設包apt-get

sudo apt-get update

1、安裝mysql服務:

sudo apt install mysql-server-5.7

2、檢查狀態:

需要先安裝net-tools

sudo apt install net-tools
sudo netstat -tap | grep mysql

3、注意檢視mysql版本使用:

mysql -V

4、檢視MySQL5.7預設賬號和密碼:

sudo cat /etc/mysql/debian.cnf

二、設定MySQL

sudo mysql_secure_installation

設定項較多,如下所示:

#1
VALIDATE PASSWORD PLUGIN can be used to test passwords...
Press y|Y for Yes, any other key for No: N (我的選項)

#2
 Please set the password for root here...
 New password: (輸入密碼)
Re-enter new password: (重複輸入)

#3
 By default, a MySQL installation has an anonymous user,
 allowing anyone to log into MySQL without having to have
 a user account created for them...
 Remove anonymous users? (Press y|Y for Yes, any other key for No) : N (我的選項)

#4
 Normally, root should only be allowed to connect from
 'localhost'. This ensures that someone cannot guess at
 the root password from the network...
 Disallow root login remotely? (Press y|Y for Yes, any other key for No) : N (我的選項)

#5
 By default, MySQL comes with a database named 'test' that
 anyone can access...
 Remove test database and access to it? (Press y|Y for Yes, any other key for No) : N (我的選項)

#6
 Reloading the privilege tables will ensure that all changes
 made so far will take effect immediately.
 Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y (我的選項)

三、查mysql服務狀態

systemctl status mysql.service

顯示如下結果說明mysql服務是正常的:

四、修改root賬戶祕密認證方式:

連線到Mysql:

sudo mysql -uroot -p

1、檢視使用者:

mysql> select user, plugin from mysql.user;

2、重置Root密碼,修改認證方式:

mysql> update mysql.user set authentication_string=PASSWORD('123456'), plugin='mysql_native_password' where user='root';
mysql>flush privileges;
mysql> exit

五、設定遠端存取mysql:

1、修改組態檔,註釋掉bind-address = 127.0.0.1

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

2、儲存退出,然後進入mysql服務

mysql -uroot -p

3、執行授權命令:

mysql>grant all ON *.* to root@'%' identified by '123456' with grant option;
 Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> flush privileges;
 Query OK, 0 rows affected (0.00 sec)
mysql> exit
 Bye

其中root@%localhost就是本地存取,設定成%就是所有主機都可連線;第二個'123456'為你給新增許可權使用者設定的密碼。

4、重啟

sudo /etc/init.d/mysql restart

六、刪除MySQL

想安裝MySQL 8.0或者重灌MySQL 5.7的前提條件,可以先刪除已有的。

1.刪除 mysql:

sudo apt autoremove --purge mysql-server-*
sudo apt remove mysql-server
sudo apt autoremove mysql-server
sudo apt remove mysql-common

2.清理殘留資料

dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P

七、安裝mysql視覺化工具mysql-workbench

可以到官網,選擇系統點選跳轉下載 Workbench。

也可以更新軟體包索引並直接安裝 MySQL Workbench 軟體包:

sudo apt update
sudo apt install mysql-workbench

啟動 MySQL Workbench。

您可以通過鍵入 mysql-workbench 或單擊 MySQL Workbench 圖示 (Activities -> MySQL Workbench) 從命令列啟動它。

當您第一次啟動 MySQL Workbench 時,應出現如下視窗:

連線設定介面

要新增新連線,請單擊 “MySQL Connections” 旁邊帶圓圈的加號⊕。

將開啟一個新視窗 “Setup New Connection form”。在此範例中,我們將通過 SSH 連線到遠端伺服器。在“Connection name”欄位中輸入有意義的名稱,然後 Standard TCP/IP over SSH 從“連線方法”下拉選單中進行選擇。

  • 在 “SSH Hostname”中,輸入伺服器的主機名或 IP 地址,然後輸入 SSH 埠。
  • 輸入您的遠端 “SSH Username”。對於身份驗證,您可以使用使用者密碼或 SSH 金鑰。
  • 保留 “MySQL Hostname”欄位的預設值 (127.0.0.1) 。
  • 在“Username”和“Password”欄位中輸入遠端資料庫登入憑據。

完成後,單擊“測試連線”按鈕。

這裡直接點選已有的連線:

設定完成後,在主介面選擇資料庫進行連線:

到此這篇關於Ubuntu系統安裝與設定MySQL的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com