mysql忘记root密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql忘记root密码相关的知识,希望对你有一定的参考价值。
1、首先关闭mysql,使用`--skip-grant-tables‘ 参数来启动 mysqld
[[email protected] ~]#service mysqld stop [[email protected] ~]#/usr/bin/safe_mysqld --skip-grant-tables&
2、此时可以无密码登录mysql,修改密码
[[email protected] ~]#mysql -uroot mysql>update user set password=password("new_pass") where user="root"; mysql>flush privileges;
密码修改成功。
此时想关闭mysql
[[email protected] ~]# service mysqld stop Stopping mysqld: [ OK ]
命令执行成功,但是
[[email protected] ~]# netstat -tnlp|grep mysql tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 13916/mysqld
发现mysql端口还存在,查看进程
[[email protected] ~]# ps -ef |grep mysql |grep -v grep mysql 13916 12911 0 11:42 pts/3 00:00:00 mysqld --skip-grant-tables
最后使用 mysqladmin shutdown关闭成功
[[email protected] ~]# mysqladmin -uroot -ppassword -S /var/lib/mysql/mysql.sock shutdown
以上是关于mysql忘记root密码的主要内容,如果未能解决你的问题,请参考以下文章