首頁  >  文章  >  資料庫  >  mysql5.7怎麼重設密碼

mysql5.7怎麼重設密碼

王林
王林原創
2020-10-16 14:26:593430瀏覽

mysql5.7重設密碼的方法:先執行【update user set authentication_string = password('123456') where user = 'root';】語句;然後重啟mysql服務即可。

mysql5.7怎麼重設密碼

具體方法:

(推薦教學:mysql影片教學

「關閉MySQL5. 7的權限系統

找到MySQL5.7的設定檔my.cnf

在檔案結尾編輯增加程式碼skip-grant-tables

重啟mysqld服務,登陸MySQL

$systemctl restart mysqld

此時再登入mysql時,不需要密碼就登入進去了。

修改root密碼

$use mysql;
$select host,user,authentication_string from user;
#修改root密码
$update user set authentication_string = password('123456') where user = 'root';

開啟權限系統,重新啟動MySQL,新密碼登入

$vim /etc/my.cnf
#开启权限系统
#skip-grant-tables
#重启mysql
$systemctl restart mysqld
#新root密码登陆
$mysql -uroot -p

相關推薦:mysql教學

#

以上是mysql5.7怎麼重設密碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多