mysql5.7重設密碼的方法:先執行【update user set authentication_string = password('123456') where user = 'root';】語句;然後重啟mysql服務即可。
具體方法:
(推薦教學: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中文網其他相關文章!