MySQL數(shù)據(jù)庫的root口令恢復(fù)方法
方法一
1. 下載MySQL源碼分發(fā)包,不用區(qū)分操作系統(tǒng),我們需要的東西是一樣的;
2. 重命名自己的mysql的data目錄下的mysql文件夾為oldmysql;
3. 將源碼包中data目錄下的mysql目錄復(fù)制到你的mysql的data目錄下;
4. 重新啟動mysql,現(xiàn)在mysql的授權(quán)關(guān)系同全新安裝的一樣,空密碼登陸,然后自行調(diào)整授權(quán);
5. 打開oldmysql這個庫檢查到底出現(xiàn)了什么問題 ;
6. 如果有備份對系統(tǒng)中原有的數(shù)據(jù)庫進行完整性檢測,以免被人修改。
方法二
1. 向mysqld server發(fā)送kill命令關(guān)掉mysqld server(不是 kill -9),存放進程ID的文件通常在MYSQL的數(shù)據(jù)庫所在的目錄中。
kill `cat /mysql-data-directory/hostname.pid`
你必須是Linux的root用戶或者是你所運行的SERVER上的同等用戶,才能執(zhí)行這個操作;
killall -TERM mysqld
2. 使用`--skip-grant-tables’ 參數(shù)來啟動 mysqld;
shell>mysqld_safe --skip-grant-tables &
/ bin/safe_mysqld --skip-grant-tables &
3. 使用`mysql -h hostname mysql’命令登錄到mysqld server ,用grant命令改變口令。你也可以這樣做:
`mysqladmin -h hostname -u user password ’new password’’
其實也可以用
use mysql; update user set password =password(’yourpass’) where user=’root’
來做到;
shell>mysqladmin -u root flush-privileges password "newpassword"
>use mysql
>update user set password=password("new_pass") where user="root";
>flush privileges;
4. 載入權(quán)限表:
`
mysqladmin -h hostname flush-privileges’
或者使用SQL命令
`FLUSH PRIVILEGES’
當然,在這里,你也可以重啟mysqld。
關(guān)鍵字:MySQL root 口令
新文章:
- CentOS7下圖形配置網(wǎng)絡(luò)的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統(tǒng)后丟失windows啟動項
- CentOS單網(wǎng)卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網(wǎng)打印機IP講解
- CentOS7使用hostapd實現(xiàn)無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網(wǎng)絡(luò)重啟出錯
- 解決Centos7雙系統(tǒng)后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統(tǒng)有什么不同呢
- Centos 6.6默認iptable規(guī)則詳解