$ mysql -u root -p
mysql> use mysql;
mysql> UPDATE user SET password=PASSWORD('MYPASS') WHERE user='root';
mysql> FLUSH PRIVILEGES;
另外,恢復 mysql root 密碼
//將原本 mysqld 關閉, 將 mysql 啟動於
# /etc/init.d/mysql stop
# mysqld -u root --skip-grant-tables &
// 進入 mysql
# mysql
mysql> use mysql;
mysql> UPDATE user SET password=password('new password') where user='root';
mysql> FLUSH PRIVILEGES;
// 重新啟動 mysql
# pkill mysql
# /etc/init.d/mysql start
沒有留言:
張貼留言