日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

Ubuntu20.4安装及配置mysql详细教程

發布時間:2025/3/21 数据库 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Ubuntu20.4安装及配置mysql详细教程 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、通過apt 安裝MySQL服務(推薦,會安裝最新版)

#命令1 更新源 sudo apt-get update#命令2 安裝mysql服務 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 (選擇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 (選擇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 (選擇N,允許root遠程連接)#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 (選擇N,不刪除test數據庫)#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 (選擇Y,修改權限立即生效)

三、檢查mysql服務狀態

systemctl status mysql.service

四、配置遠程訪問

在Ubuntu下MySQL缺省是只允許本地訪問的,使用workbench連接工具是連不上的;
如果你要其他機器也能夠訪問的話,需要進行配置;
找到 bind-address 修改值為 0.0.0.0(如果需要遠程訪問)

sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf #找到 bind-address 修改值為 0.0.0.0(如果需要遠程訪問)sudo /etc/init.d/mysql restart #重啟mysql

登錄數據庫

sudo mysql -uroot -p

如果為了安全性,設置了用戶驗證,必須使用sudo,才能登錄,出現如下情況:(盡量不要設置ubuntu用戶在驗證,否則會很麻煩)

mysql -uroot -p


解決方法:

sudo vim /etc/mysql/my.cnf

添加以下字段

[mysqld] skip-grant-tables

保存后重啟mysql,可以正常登陸了

systemctl restart mysql

這樣操作后,是相當于跳過了mysql的密碼認證。很不安全,直接就可以登錄進去。

總結

以上是生活随笔為你收集整理的Ubuntu20.4安装及配置mysql详细教程的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。