winxp 裝置MYSQL 湧現Error 1045 access denied 的處理辦法。本站提示廣大學習愛好者:(winxp 裝置MYSQL 湧現Error 1045 access denied 的處理辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是winxp 裝置MYSQL 湧現Error 1045 access denied 的處理辦法正文
操作體系:WINDOWS-XP 體系
數據庫版本:mysql 5.x
提醒:access denied for user 'root'@'localhost' using password yes/no
本來都好好的,明天開機下去提醒下面的這個毛病,重啟 MySQL 照樣弗成以。
留意我這裡的情況是 WINDOWS-XP 體系,LINUX 體系下的操作沒有驗證過,情形不清晰。
1. 治理員上岸體系,停滯 MySQL 辦事或許停止 MySQL 過程。
2. 啟動 WINDOWS 的敕令行窗口(即平日的 DOS 窗口:運轉cmd),切換到你的 “MySQL\bin” 目次下。
例如我的是 “D:\Program Files\MySQL\MySQL Server 5.2\bin”,然後履行上面的粗體的敕令:(留意你的 “my.ini” 地位)
Microsoft Windows XP [版本 5.1.2600]
(C) 版權一切 1985-2001 Microsoft Corp.
C:\Documents and Settings\Administrator>cd D:\Program Files\MySQL\MySQL Server 5.2\bin
C:\Documents and Settings\Administrator>d:
D:\Program Files\MySQL\MySQL Server 5.2\bin>mysqld --defaults-file="D:\Program Files\MySQL\MySQL Server 5.2\my.ini" --console --skip-grant-tables
100608 9:04:12 InnoDB: Started; log sequence number 0 46409
100608 9:04:12 [Note] mysqld: ready for connections.
Version: '5.2.0-falcon-alpha-community' socket: '' port: 3306 MySQL Community
Server (GPL)
100608 9:06:57 [Warning] Found invalid password for user: 'root@localhost'; Ign
oring user
只需湧現下面信息,就解釋 MySQL 曾經起來了。
3. 不封閉此敕令行窗口,從新翻開一個敕令行窗口,異樣切到 “MySQL\bin” 目次下,然後履行上面的粗體的敕令:
Microsoft Windows XP [版本 5.1.2600]
(C) 版權一切 1985-2001 Microsoft Corp.
C:\Documents and Settings\Administrator>cd D:\Program Files\MySQL\MySQL Server 5.2\bin
C:\Documents and Settings\Administrator>d:
D:\Program Files\MySQL\MySQL Server 5.2\bin>mysql -u root mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.2.0-falcon-alpha-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
然後,就是從新設置暗碼了!
mysql> UPDATE user SET Password=PASSWORD('root') where USER='root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
4. 好了到此步,可以封閉第一個 DOS 窗口了(封閉辦事)。翻開體系辦事掌握窗口(掌握面板--治理對象--辦事),啟動 MySQL 辦事。
5. 在剩下的第二個 DOS 窗口中,用新的 ROOT 暗碼銜接 MySQL。
D:\Program Files\MySQL\MySQL Server 5.2\bin>mysql -u root -p
Enter password: ****
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.2.0-falcon-alpha-community-nt MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> quit
Bye
至此,體系恢復 ROOT 用戶治理權限完成,就是治理員暗碼的成績,奇異,官方裝置的時刻不給出處理辦法,貌似已存在良久了。。。