vim /etc/my.cnf
在 my.cnf 最后一行 添加:
skip-grant-tables
退出并重启 mysql
service mysqld restart
mysql -uroot -p (直接点击回车,密码为空)
切换数据库
use mysql;
执行修改命令
update user set authentication_string=password('newPwd_1_') where user='root';
刷新
flush privileges;
退出
quit;
删除之前的skip-grant-tables
vim /etc/my.cnf
重启服务
service mysqld restart
网友评论