MySQL忘记密码
- 修改my.cnf
vi /etc/my.cnf
,添加skip-grant-tables
- 重启数据库
service mysqld restart
- 连接数据库
mysql -u root
- 修改MySQL root用户的密码
三行命令分别如下:123update mysql.user set authentication_string = password('123456') where user='root' and Host = 'localhost';flush privileges;quit; - 恢复第一步中的修改
vi /etc/my.cnf
,删除skip-grant-tables