關於mysql登入出現報錯資訊:ERROR 1045 (28000)的解決方案

來源:互聯網
上載者:User

標籤:myql   登入   error 1045   

登入mysql資料庫出現報錯資訊ERROR 1045(28000)如下:

[[email protected] ~]# mysql -uroot -p fanshineEnter password: ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)

分析:資料庫存在空使用者所致

解決:

  1. 停止mysql服務

[[email protected] ~]# service mysqld stop

2.進入mysql安全模式

[[email protected] ~]# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

註:--skip-grant-tables 啟動mysql時不啟動grant-tables,授權表;--skip-networking關閉MySQL的TCP/IP串連方式,跳過網路 

3.登入mysql資料庫

[[email protected] ~]# mysql -u root mysql

4.

mysql> use mysql;

5.查詢

mysql> select user,host,password from user;

結果如下:

+------+-----------+-------------------------------------------+| user | host      | password                     |+------+-----------+-------------------------------------------+|    | localhost | root | localhost | *19A893FC29DBD6E2C8EAF9E248EA22AA1E1A24B7 || root | 127.0.0.1 | *19A893FC29DBD6E2C8EAF9E248EA22AA1E1A24B7 |+------+-----------+-------------------------------------------+

6.刪掉空使用者

mysql> delete from user where user=‘‘;

7.退出

mysql> quit

8.啟動服務

[[email protected] ~]# service mysqld start

9.重新登入

[[email protected] ~]# mysql -u root -pEnter password:
輸入密碼登入即可。


關於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.