mysql出現ERROR 1045 (28000) 錯誤

來源:互聯網
上載者:User

標籤:

第一步:

用這位的方法進行實驗,發現不是這樣的因為我的沒有空的user:

一、現象:       公司linux系統的mysql資料庫root使用者佈建過密碼,但常常用命令‘mysql -u root -p‘登入報錯,有時又能登入。登入報錯資訊為:[[email protected] ~]# mysql -u root -pEnter password: ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)二、原因:資料庫中存在空使用者所致三、處理辦法:1、停用mysql服務:# service mysql stop2、輸入命令:# mysqld_safe --user=mysql --skip-grant-tables --skip-networking & 3、登入資料庫:# mysql -u root mysql4、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> quit8、啟動mysql服務:# service mysql start9、重新用命令‘mysql -u root -p’登入,OK!

 

但是在不用密碼登入的時候有另一種方法:在/etc/mysql/my.cnf中添加一行

對,沒錯,就是添加skip-grant-tables

然後  sudo service mysql restart

 

第二步:

尋求新的方法http://www.bitscn.com/pdb/mysql/201407/226146.html

 

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.