Linux下重置MySQL的密码

(用的RH 5.5,MySQL 5.6.11)

 

# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('000000') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit

# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password:

mysql>

 

这样就搞定了~

你可能感兴趣的:(mysql,linux)