mysql 密码找回

mysql相关:

mysql --help |grep my.cnf  配置文件   添加skip-grant-tables 重启服务  (改密码)

mysql   use mysql

update user set Password=Password('111111') where User='root'; 

flush privileges;     


你可能感兴趣的:(mysql,配置文件,where,密码找回)