方法一:修改my.cnf配置文件mysql
1.首先確認服務器出於安全的狀態,也就是沒有人可以任意地鏈接MySQL數據庫。
由於在從新設置MySQL的root密碼的期間,MySQL數據庫徹底出於沒有密碼保護的
狀態下,其餘的用戶也能夠任意地登陸和修改MySQL的信息。能夠採用將MySQL對
外的端口封閉,而且中止Apache以及全部的用戶進程的方法實現服務器的準安全
狀態。最安全的狀態是到服務器的Console上面操做,而且拔掉網線。
2.修改MySQL的登陸設置:
# vi /etc/my.cnf
在[mysqld]的段中加上一句:skip-grant-tables
例如:
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-grant-tables
保存而且退出vi。
3.從新啓動mysqld
# /etc/init.d/mysqld restart
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]
4.登陸並修改MySQL的root密碼
# /usr/bin/mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 3.23.56
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> USE mysql ;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> UPDATE user SET Password = password ( 'new-password' ) WHERE User = 'root' ;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 2 Changed: 0 Warnings: 0
mysql> flush privileges ;
Query OK, 0 rows affected (0.01 sec)
mysql> quit
Bye
5.將MySQL的登陸設置修改回來
# vi /etc/my.cnf
將剛纔在[mysqld]的段中加上的skip-grant-tables刪除
保存而且退出vi。
6.從新啓動mysqld
# /etc/init.d/mysqld restart
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]linux
在linux中採用rpm文件安裝的mysql找不到my.cnf文件,可使用第二種方式sql
方法二:mysql啓動時加上跳過受權的啓動參數--skip-grant-tables數據庫
一、殺掉原來進行着的mysql:
rcmysqld stop
或者:
service mysqld stop
或者:
kill -TERM mysqld
二、以命令行參數啓動mysql:
/usr/bin/mysqld_safe --skip-grant-tables &
三、修改管理員密碼:
use mysql;
update user set password=password('yournewpasswordhere') where user='root';
flush privileges;
exit;
四、殺死mysql,重啓mysql安全
實驗過第二種方式:親測可用服務器