溫馨提示×

溫馨提示×

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

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

CentOS 7.7解決yum方式安裝的MySQL 5.7 root用戶密碼丟失問題

發(fā)布時間:2020-09-06 12:14:32 來源:網(wǎng)絡(luò) 閱讀:540 作者:Marion0728 欄目:系統(tǒng)運維

1、沒有輸入或輸入錯誤的root用戶密碼,無法進入數(shù)據(jù)庫:

# mysql -uroot -p

(1)沒有輸入root用戶密碼,直接回車:

CentOS 7.7解決yum方式安裝的MySQL 5.7 root用戶密碼丟失問題

(2)輸入錯誤的root用戶密碼:

CentOS 7.7解決yum方式安裝的MySQL 5.7 root用戶密碼丟失問題

2、強制結(jié)束MySQL進程:

# yum -y install psmisc

# killall mysqld

# pkill mysqld

# ps -ef | grep mysql

# ss -tunlp | grep 3306

3、使用mysqld命令,增加--skip-grant-tables參數(shù),跳過權(quán)限表,啟動數(shù)據(jù)庫:

# mysqld --defaults-file=/etc/my.cnf --user=mysql --skip-grant-tables &

# ps -ef | grep mysql

# ss -tunlp | grep 3306

4、使用mysql命令直接進入數(shù)據(jù)庫,為root用戶設(shè)置新的密碼并刷新權(quán)限:

# mysql

mysql> use mysql;

mysql> update user set authentication_string=password('root@1234') where user='root';

mysql> flush privileges;

CentOS 7.7解決yum方式安裝的MySQL 5.7 root用戶密碼丟失問題

5、重啟數(shù)據(jù)庫:

# killall mysqld

# pkill mysqld

# ps -ef | grep mysql

# ss -tunlp | grep 3306

# systemctl start mysqld

6、輸入root用戶新設(shè)置的密碼root@1234,進入數(shù)據(jù)庫:

# mysql -uroot -p

CentOS 7.7解決yum方式安裝的MySQL 5.7 root用戶密碼丟失問題

向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