MySQL 重置 root 密码 - 忘记密码
时间:2018-12-25 17:38 来源:linux.it.net.cn 作者:IT
在配置文件/etc/my.cnf添加配置,重启mysql
##无密码登录
skip-grant-tables
客户端连接mysql选择mysql库
mysql -uroot -p
use mysql;
修改root密码5.7版本,5.7版本之后已经没有了password字段,而是用authentication_string加密字段代替
update mysql.user set authentication_string=password('root') where user='root';
5.7版本以前
update mysql.user set password=password('root') where user='root';
(责任编辑:IT)
在配置文件/etc/my.cnf添加配置,重启mysql ##无密码登录 skip-grant-tables 客户端连接mysql选择mysql库 mysql -uroot -p use mysql; 修改root密码5.7版本,5.7版本之后已经没有了password字段,而是用authentication_string加密字段代替 update mysql.user set authentication_string=password('root') where user='root'; 5.7版本以前 update mysql.user set password=password('root') where user='root'; (责任编辑:IT) |