mysql 5.7 重置密码

密码重置:
1 首先需要修改配置文件:

vim /etc/my.cnf
skip-grant-tables

重启mysql

/etc/init.d/mysqld restart 

登录mysql,然后重置密码

mysql -uroot -p
##登录后重置密码
use mysql
update mysql.user set authentication_string=password('new_passwd') where user='root'

然后删除/etc/my.cnf中添加的一行skip-grant-tables
重启mysqld

/etc/init.d/mysqld restart

然后尝试重新登录即可

你可能感兴趣的:(mysql 5.7 重置密码)