MySQL 是一款常用的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),用戶登錄 MySQL 數(shù)據(jù)庫時需要輸入用戶名和密碼。如果忘記了 MySQL 的密碼,可以通過重置密碼的方式重新設(shè)置。
下面介紹在重置 MySQL 密碼時需要的步驟:
1. 停止 MySQL 服務(wù) sudo systemctl stop mysql
2. 使用 root 用戶登錄 MySQL,輸入以下命令 sudo mysql -u root
3. 選擇使用的數(shù)據(jù)庫 use mysql;
4. 重置密碼,以“new_password”為例 update user set authentication_string=password('new_password') where user='root';
5. 刷新權(quán)限 flush privileges;
6. 退出 MySQL 數(shù)據(jù)庫 quit;
執(zhí)行以上步驟后,已經(jīng)成功將 MySQL 的密碼重置為“new_password”。重新啟動 MySQL 服務(wù)即可登錄使用。
上一篇css橫向時間齒輪
下一篇mysql怎么增加一個表