一、問題:
公司linux系統(tǒng)的mysql數(shù)據(jù)庫root用戶設(shè)置過密碼,但常常用命令'mysql -u root -p'登錄報(bào)錯(cuò),有時(shí)又能登錄。登錄報(bào)錯(cuò)信息為:
[root@localhost ~]# mysql -u root -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
二、原因:數(shù)據(jù)庫中存在空用戶所致
三、解決方法:
1、停用mysql服務(wù):
# service mysql stop
2、輸入命令:
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
3、登入數(shù)據(jù)庫:
# mysql -u root mysql
4、
mysql> use mysql;
5、
mysql> select user,host,password from user;
結(jié)果如下:
+------+-----------------------+----------+
| user | host | password |
+------+-----------------------+----------+
| root | % | mima |
| root | localhost.localdomain | mima |
| root | 127.0.0.1 | mima |
| | localhost | |
| | localhost.localdomain | |
+------+-----------------------+----------+
6、將上面查詢出來的空用戶刪除:
mysql> delete from user where user='';
7、退出數(shù)據(jù)庫:
mysql> quit
8、啟動(dòng)mysql服務(wù):
# service mysql start
9、重新用命令:
mysql -u root -p
登錄,OK!
更多關(guān)于MySQL相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《MySQL事務(wù)操作技巧匯總》、《MySQL存儲(chǔ)過程技巧大全》、《MySQL數(shù)據(jù)庫鎖相關(guān)技巧匯總》及《MySQL常用函數(shù)大匯總》
希望本文所述對(duì)大家MySQL數(shù)據(jù)庫計(jì)有所幫助。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com