Linux中忘记mysql数据库密码解决方法

今天想要进行远程连接数据库,结果中途操作失误,改错了root密码,结果悲剧了;

登录时提示ERROR 1045 (28000): Access denied for user的错误;

解决办法:

直接使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码:

# mysql -udebian-sys-maint -p 
Enter password: <输入[client]节的密码> 
mysql>SET PASSWORD FOR root=PASSWORD("root密码");
mysql> FLUSH PRIVILEGES; 
mysql> quit 
# mysql -uroot -p 
Enter password: <输入新设的密码newpassword> 
mysql> 

测试后登录OK

你可能感兴趣的:(MySQL)