标签:
(1)停止mysql服务
(2)启动mysql服务
mysqld_safe --defaults-file=/etc/my.cnf --skip-grant-tables --skip-networking &
(3)无密码登录,并修改root用户密码
update mysql.user set password=password("password") where user=‘root‘ and host=‘localhost‘;
(4)关闭mysql服务
mysqladmin -u root -p shutdown
(5)正常启动mysql服务器
标签:
原文地址:http://www.cnblogs.com/haha1274015449/p/5943264.html