溫馨提示×

溫馨提示×

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

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

mysql 數(shù)據(jù)庫密碼修改

發(fā)布時間:2020-06-10 00:13:39 來源:網絡 閱讀:892 作者:TT漫游記 欄目:MySQL數(shù)據(jù)庫

未知數(shù)據(jù)庫密碼或初次登陸可用此方法:
如果是修改密碼則要先停止mysql服務
systemctl stop mysqld

1修改配置文件,跳過密碼進入數(shù)據(jù)庫
vim /etc/my.cnf
[mysqld]
skip-grant-tables
重啟服務:
systemctl restart mysqld
進入數(shù)據(jù)庫:
mysql
查看數(shù)據(jù)庫表結構:
desc mysql.user;
設置數(shù)據(jù)庫登陸密碼

update mysql.user set authentication_string=password("123456");

退出
quit
再次修改配置文件,將剛才的跳過密碼注釋掉,再寫入兩行
[mysqld]
#skip-grant-tables
validate_password_policy=0
validate_password_length=6

重啟服務
systemctl restart mysqld
用設置好的密碼登陸數(shù)據(jù)庫
mysql -uroot -p123456

show databases;
此時需要用戶再寫一遍密碼
set password for root@localhost=password("123456");

退出
quit
再次進入
mysql -uroot -p123456
數(shù)據(jù)庫可正常使用:
show databases;

向AI問一下細節(jié)

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

AI