mysql登入報錯 ERROR 1045 (28000)

來源:互聯網
上載者:User

標籤:mysql   error 1045 28000   

1、現象:
[[email protected] ~]# mysql -u root -p
Enter password: 
ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)


2、原因:資料庫中存在空使用者所致


3、解決方案:
1)停用mysql服務:# service mysql stop
2)輸入命令:# mysqld_safe --user=mysql --skip-grant-tables --skip-networking & 
3)登入資料庫:# mysql -u root mysql
4)mysql> use mysql;
5)mysql> select user,host,password from user; 結果如下:
+------+-----------------------+----------+
| 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)退出資料庫:mysql> quit
8)啟動mysql服務:# service mysql start

9)重新用命令‘mysql -u root -p’登入,OK!


或者:

1)找到mysql的設定檔,修改my.cnf,在其中加入skip-grant-tables

2)重啟資料庫service mysql restart

3)免密碼使用root登入,然後查看user表、刪除空使用者

4)推出資料庫,修改my.cnf,去掉skip-grant-tables

5)重啟資料庫

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

mysql登入報錯 ERROR 1045 (28000)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.