标签:
# /etc/init.d/mysqld stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql 【这一步 就进入mysql数据库了 进入数据库 跟着 ②操作】
① { mysql> UPDATE user SET Password=PASSWORD(‘newpassword‘) where USER=‘root‘;
mysql> FLUSH PRIVILEGES;
mysql> quit}
# /etc/init.d/mysqld restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
mysql>
② mysql>update mysql.user set authentication_string= password (‘guo‘) WHERE User=‘root‘; #更改密码为 guo
mysql>flush privileges; #更新权限
mysql>quit #退出
service mysql start
标签:
原文地址:http://www.cnblogs.com/lunhui/p/5895475.html