您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎樣在Ubuntu18.04中安裝MySQL,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
在Ubuntu
中,默認情況下,只有最新版本的MySQL
包含在APT
軟件包存儲庫中,要安裝它,只需更新服務器上的包索引并安裝默認包apt-get
。
#命令1 sudo apt-get update #命令2 sudo apt-get install mysql-server
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 (我的選項)
systemctl status mysql.service
顯示如下結(jié)果說明mysql服務是正常的:
在Ubuntu下MySQL缺省是只允許本地訪問的,使用workbench連接工具是連不上的;
如果你要其他機器也能夠訪問的話,需要進行配置;
sudo mysql -uroot -p
登入root進行其他設置:
GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY "123456";
其中root@localhos
,localhost
就是本地訪問,配置成%
就是所有主機都可連接;
第二個'123456'
為你給新增權(quán)限用戶設置的密碼,%
代表所有主機,也可以是具體的ip;
不過這隨設置了%
但我root通過工具還是登陸不進去,可能是為了安全性,所以新建數(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";
打開workbench進行連接配置:
配置完成后,在主界面選擇weixx數(shù)據(jù)庫進行連接:
關(guān)于怎樣在Ubuntu18.04中安裝MySQL就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(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)容。