溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎樣在Ubuntu18.04中安裝MySQL

發(fā)布時間:2021-05-26 10:02:21 來源:億速云 閱讀:162 作者:Leah 欄目:MySQL數(shù)據(jù)庫

這篇文章給大家介紹怎樣在Ubuntu18.04中安裝MySQL,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.安裝MySQL

Ubuntu中,默認情況下,只有最新版本的MySQL包含在APT軟件包存儲庫中,要安裝它,只需更新服務器上的包索引并安裝默認包apt-get。

#命令1
sudo apt-get update
#命令2
sudo apt-get install mysql-server

怎樣在Ubuntu18.04中安裝MySQL

2.配置MySQL

2.1 初始化配置

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) : Y (我的選項)

#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 (我的選項)

2.2 檢查mysql服務狀態(tài)

systemctl status mysql.service

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

怎樣在Ubuntu18.04中安裝MySQL

3.配置遠程訪問

在Ubuntu下MySQL缺省是只允許本地訪問的,使用workbench連接工具是連不上的;

如果你要其他機器也能夠訪問的話,需要進行配置;

3.1 首先用根用戶進入

sudo mysql -uroot -p

登入root進行其他設置:

怎樣在Ubuntu18.04中安裝MySQL

GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY "123456";

怎樣在Ubuntu18.04中安裝MySQL

其中root@localhos,localhost就是本地訪問,配置成%就是所有主機都可連接;

第二個'123456'為你給新增權(quán)限用戶設置的密碼,%代表所有主機,也可以是具體的ip;

不過這隨設置了%但我root通過工具還是登陸不進去,可能是為了安全性,所以新建數(shù)據(jù)庫和用戶;

3.2 新建數(shù)據(jù)庫和用戶

用root用戶新建數(shù)據(jù)和用作遠程訪問的用戶

##1 創(chuàng)建數(shù)據(jù)庫weixx
CREATE DATABASE weixx;
##2 創(chuàng)建用戶wxx(密碼654321) 并允許wxx用戶可以從任意機器上登入mysql的weixx數(shù)據(jù)庫
GRANT ALL PRIVILEGES ON weixx.* TO wxx@"%" IDENTIFIED BY "654321";

4.使用workbench連接數(shù)據(jù)庫

打開workbench進行連接配置:

怎樣在Ubuntu18.04中安裝MySQL

配置完成后,在主界面選擇weixx數(shù)據(jù)庫進行連接:

怎樣在Ubuntu18.04中安裝MySQL

關(guān)于怎樣在Ubuntu18.04中安裝MySQL就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI