mysql 完整改密码步骤

mysql 完整改密码步骤

如果密码不小心忘记了,需要重置密码,请按照一下步骤来

1. vim /etc/my.cnf 加入skip-grant-tables

注意5.7版本以上可能是 /etc/mysql/mysql.conf.d/mysqld.cnf 文件

重启mysql

/etc/init.d/mysql restart

无密码登录mysql,重设密码 (新版本和旧版本修改密码方式变了,请确定自己的版本)

mysql -uroot -p
use mysql

#旧版本
update user set password=PASSWORD(‘123456’) where User='root';

#5.7以后的版本删除了password字段,改为authentication_string
update user set authentication_string=password('123456') where user='root' ;

#如果还不可以请百度搜索 mysql5.7 修改密码

删除添加的skip-grant-tables 这一行

重启mysql


mysql 完整改密码步骤
https://www.huangchaoyu.com/2618678352.html
作者
hcy
发布于
2019年6月3日
更新于
2024年8月17日
许可协议