mysql登陸改密碼

2021-09-23 14:27:50 字數 497 閱讀 5474

####我參考的是這個文章

大致總結一下:

net stop mysql

mysqld --shared-memory --skip-grant-tables 游標閃爍

重新開命令列,update mysql.user set authentication_string=』』 where user = 『root』;

關閉所有命令列

net start mysql

mysql -u root –p 不輸入密碼,能成功登陸

alter user 『root』@'localhost』identified by 『root』; 記得分號。

看看設定成功沒。net start mysql mysql -u root –p ,輸入剛才設定的密碼root,開啟成功。

其中–shared-memory這一點不輸是不行的,這個坑了好久。

zip的安裝可以參考

注意ini檔案的編碼,改為ansi。

補充:

mysql登陸找回密碼 MySql登陸密碼找回

在windows下 開啟命令列視窗,停止mysql服務 net stop mysql 啟動mysql,一般到mysql的安裝路徑,找到 mysqld nt.exe 或mysqld.exe 執行 mysqld nt 或mysqld.exe skip grant tables 當前視窗將會停止。另外開啟...

MySQL免密碼登陸

1 停止mysql服務 sudo service mysql stop 2 以安全模式啟動mysql sudo mysqld safe skip grant tables 3 mysql啟動之後就可以不用密碼登陸了 sudo mysql uroot p 然後直接回車 4.重新設定密碼 update ...

mysql密碼登陸失敗

原文引用 mysql uroot p報錯 enter password error 1045 28000 access denied for user root localhost using password no 或error 1045 28000 access denied for user ...