标签:mysql
MySQL启动参数中有个是 --skip-grant-tables,叫做跳过授权表
1、停止mysqld服务
2、vim /etc/my.cnf
[mysqld]
skip-grant-tables
3、重启mysql
4、进入mysql命令行
mysql>use mysql
mysql>update user set password=password(‘newpassword‘) where user=‘root‘;
mysql>flush privileges;
mysql>exit
5、去掉刚在my.cnf中增加的一行
#skip-grant-tables
标签:mysql
原文地址:http://51kxj.blog.51cto.com/3537967/1694442