linux下忘记mysql密码的几种找回方法
Posted MargoHu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下忘记mysql密码的几种找回方法相关的知识,希望对你有一定的参考价值。
方法一(先进入root权限):
# /etc/init.d/mysql stop # mysqld_safe --user=mysql --skip-grant-tables --skip-networking & # mysql -u root mysql> update user set password=password("newpassword") where user=‘root‘; mysql> flush privileges; mysql> quit # /etc/init.d/mysql restart # mysql -uroot -p enter password: <输入新设的密码newpassword> mysql>
以上是关于linux下忘记mysql密码的几种找回方法的主要内容,如果未能解决你的问题,请参考以下文章
linux 5.7.20和5.6.38版本 数据库忘记root密码怎么找回?