快捷搜索:   nginx

linux mysql root密码丢失/忘记密码的解决办法

在linux下: 

如果 MySQL 正在运行,首先杀之:

killall -TERM mysqld

启动 MySQL :

mysqld_safe –skip-grant-tables & 

就可以不需要密码就进入 MySQL 了。 

musql -uroot -p

然后直接回车

然后就是 

>use mysql 

>update user set password=password("new_pass") where user="root"; 

>flush privileges; 


顶(2)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论