Host “localhost ” is not allowed to connect to mysql server解決方案

來源:互聯網
上載者:User

一、原因:

今天在嘗試初始化一個WEB應用的時候,發現其串連不上MySQL,從Traceback看到使用的預設密碼為‘YES’。沒轍,居然嘗試把MySQL的密碼也改成'YES',瘋了...我是瘋子。任意鍵在哪兒呢...

USE mysqlUPDATE uesr SET password='YES' where user='root' AND host='localhost';FLUSH PRIVILEGES;退出控制台後就再進不去了。mysql -u root -pmysql -h localhost -u root -p都不行,出現錯誤:"Host 'localhost' is not allowed to connect to this MySQL server."二、方法首先停止mysql服務:sc stop mysql然後:mysqld --skip-grant-tables另開一個終端,繼續mysqlcheck --check-upgrade --all-databases --auto-repair然後再輸入mysql就可以進入MySQL控制台了。這樣進去以後使用SELECT語句會發現密碼使用的是明文:'YES',哈哈,我真是個瘋子。三、問題以上進去控制台後並不能執行賬戶維護工作。正確的方法為:mysql -u root然後使用以下語句將密碼還原為 root 的 HASH 值:UPDATE uesr SET password=PASSWORD('YES') where user='root' AND host='localhost';然後,mysqld --skip-grant-tables 這個命令似乎只可以在本地運行。 

如果mysql服務無法正常停止,使用命令:mysqladmin -u root shutdown 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.