【备忘录】CentOS服务器mysql忘记root密码恢复

mysql的root忘记,现无法操作数据库
停止mysql服务service  mysql stop
然后使用如下的参数启动mysql, --skip-grant-tables会跳过mysql的授权
shell#/usr/bin/mysqld_safe --skip-grant-tables &
mysql -p  回车,进入不需要密码
mysql>
mysql>update mysql.user set Password=password('123456') where User='root';
Query OK, 4 rows affected (0.00 sec)
Rows matched: 4  Changed: 4  Warnings: 0
mysql> flush privileges;  
Query OK, 0 rows affected (0.00 sec)
 
重启mysql
posted @ 2017-01-19 17:15  liugx  阅读(226)  评论(0编辑  收藏  举报