提示:1045 access denied for user 'root'@'localhost' using password yes
方法一:
# /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>
方法二:
直接使用/etc/mysql/debian.cnf文件中[client]節提供的用戶名和密碼:
# mysql -udebian-sys-maint -p
Enter password: <輸入[client]節的密碼>
mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’;
mysql> FLUSH PRIVILEGES;
mysql> quit
# mysql -uroot -p
Enter password: <輸入新設的密碼newpassword>
mysql>
內容來自: 腳本之家 www.jb51.net
另一個方法
Windows:
1. 管理員登陸系統,停止mysql服務或者結束mysqld-nt進程
2. 進入命令行,來到mysql的安裝目錄.假設安裝目錄為 d:mysql , CMD進入命令行
3. 運行 d:mysqlinmysqld-nt skip-grant-tables 啟動mysql,關閉權限的檢查
4. 運行 d:mysqlinmysqladmin -u root flush-privileges password "newpassword" 重設root密碼
5. 重新啟動mysql服務
第4步也可以直接修改mysql表,所用到的SQL語句同linux部分,這裏就不再重複了.
暑期編程PK賽
得CSDN機械鍵盤等精美禮品!