先關掉mysql服務器;
1、先確認mysql的工作狀態: #mysql status ,如果mysql正在running,則先將其關閉
# service mysql stop
2、進入mysql配置文件: # vim /etc/my.cnf
在[mysqld]的段中加上一句: skip-grant-tables
3、啟動mysql: # service mysql start
4、登錄並修改MySQL的root密碼: # /usr/bin/mysql
mysql> use mysql ;
mysql> update user set Password = password ( 'new-password' ) where user = 'root' ;
mysql> exit
5、將MySQL的登錄設置修改回來: # vim /etc/my.cnf
將先前在[mysqld]的段中加上的那句刪除: skip-grant-tables
6、重啟mysql服務器: # /root/lnmp restart