方法一:
1、停止mysql服务:service mysqld stop
2、通过mysqld_safe启动mysql服务,并同时传递两个参数:
--skip-grant-tables --skip-networking
即:mysqld_safe --skip-grant-tables --skip-networking &
3、空密码连接mysql,即:mysql -uroot -p
4、修改root密码,
即:update mysql.user set password=password(‘new_password‘) where condition;
5、重启mysl服务,正常连接即可。
方法二:
1、停止mysql服务:service mysqld stop
2、vim /etc/my.cnf
在[mysqld]下添加:skip-grant-tables
skip-networking
3、保存退出,空密码连接mysql
4、修改root密码
5、编辑my.cnf,去掉步骤2添加的内容,保存退出,重启mysql服务即可。
本文出自 “行走中成长,点滴记录…” 博客,请务必保留此出处http://poseidon2011.blog.51cto.com/7553825/1863008
原文地址:http://poseidon2011.blog.51cto.com/7553825/1863008