當(dāng)需要在MySQL里進(jìn)行操作時(shí),通常需要登錄數(shù)據(jù)庫。而登錄數(shù)據(jù)庫需要使用賬號和密碼,但有時(shí)候我們不清楚MySQL的默認(rèn)賬號密碼是什么,那怎么辦呢?下面我們就來介紹如何查看MySQL的默認(rèn)賬號密碼。
1. 打開MySQL的安裝目錄,找到my.ini文件
C:\ProgramData\MySQL\MySQL Server 8.0\my.ini
2. 在my.ini文件中找到[mysqld]節(jié)點(diǎn)
[mysqld]
3. 在[mysqld]節(jié)點(diǎn)里找到以下兩行代碼:
# The default authentication plugin is mysql_native_password, unless alternative # plugins are installed. See https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin default_authentication_plugin=mysql_native_password
4. 在default_authentication_plugin=mysql_native_password代碼下面,添加以下兩行代碼:
skip-grant-tables skip-networking
5. 保存修改后的my.ini文件,并重啟MySQL服務(wù)。
6. 打開命令行,輸入以下命令登錄到MySQL:
mysql -u root -p
7. 回車后,不需要輸入密碼,直接回車即可。
8. 登錄成功后,輸入以下命令來查看MySQL的默認(rèn)賬號密碼:
SELECT user,authentication_string,plugin,host FROM mysql.user;
9. 此時(shí),將會(huì)顯示MySQL的默認(rèn)賬號密碼信息。
通過以上步驟,我們就可以輕松地查看MySQL的默認(rèn)賬號密碼了。