欧美精品亚洲精品日韩经典,午夜秒播,国产福利精品一区二区,亚洲国产成人精品久久,亚洲免费专区,国产精品国产三级国产a,日韩福利网站

龍巖易富通網(wǎng)絡(luò )科技有限公司

龍巖小程序開(kāi)發(fā),龍巖分銷(xiāo)系統

linux下mysql的root密碼忘記解決方法

2015.09.10 | 746閱讀 | 0條評論 | 數據庫

1.首先確認服務(wù)器出于安全的狀態(tài),也就是沒(méi)有人能夠任意地連接MySQL數據庫。 因為在重新設置MySQL的root密碼的期間,MySQL數據庫完全出于沒(méi)有密碼保護的 狀態(tài)下,其他的用戶(hù)也可以任意地登錄和修改MySQL的信息??梢圆捎脤ySQL對 外的端口封閉,并且停止Apache以及所有的用戶(hù)進(jìn)程的方法實(shí)現服務(wù)器的準安全 狀態(tài)。最安全的狀態(tài)是到服務(wù)器的Console上面操,并且拔掉網(wǎng)線(xiàn)。

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.重新啟動(dòng)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的登錄設置修改回來(lái)

 # vi /etc/my.cnf

 將剛才在[mysqld]的段中加上的skip-grant-tables刪除

 保存并且退出vi。

 6.重新啟動(dòng)mysqld

 # /etc/init.d/mysqld restart

 Stopping MySQL: [ OK ]

 Starting MySQL: [ OK ]

Work for fun,Live for love!

贊 (

發(fā)表評論