您好,登錄后才能下訂單哦!
這篇文章主要講解了“MySQL修改root密碼后報錯:access denied for user ‘root’@'localhost’ usi怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“MySQL修改root密碼后報錯:access denied for user ‘root’@'localhost’ usi怎么解決”吧!
本來mysql運行得好好的,修改了一次root密碼,貌似沒成功,當時也沒在意,mysql也沒出問題。到了第二天,啟動時報了這個錯誤“access denied for user 'root'@'localhost' using password yes”。網上解決的方法很多,試了幾個都不行,下面就貼出自己實踐成功后的方法,
以下內容根據“http://topic.csdn.net/u/20090515/21/2b3c9a12-d8a5-4bb1-9895-6069cef5aef8.html”整理,使得解決方法有個更清晰的步驟。
1.首先進入命令行模式,本人的mysql安裝在C盤,切換到mysql bin目錄下。命令格式如下。
C代碼 www.2cto.com
cd C:\program files\mysql\mysql server 5.1\bin
2.停止mysql的服務,敲入下面命令:
C代碼
C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqld --defaults-file="C:\Program
Files\MySQL\MySQL Server 5.1\my.ini" --console --skip-grant-tables
看到如下結果就說明啟動成功了
C代碼
Version: '5.1.33-community-log' socket: '' port: 3306 MySQL Community Server
(GPL)
3.再打開一個窗口,同樣切換到bin目錄下
C代碼
C:\Program Files\MySQL\MySQL Server 5.1\bin> -uroot mysql
顯示結果如下:
C代碼
Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 2
Server version: 5.1.33-community-log MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
4.繼續下面這個步驟,輸入:
C代碼 www.2cto.com
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’;
mysql> FLUSH PRIVILEGES;
mysql> quit
# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password: <輸入新設的密碼newpassword>
mysql>
到此為止,成功更新了密碼。
感謝各位的閱讀,以上就是“MySQL修改root密碼后報錯:access denied for user ‘root’@'localhost’ usi怎么解決”的內容了,經過本文的學習后,相信大家對MySQL修改root密碼后報錯:access denied for user ‘root’@'localhost’ usi怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。