連線mysql報1045錯誤怎麼辦

2020-09-29 15:00:49

連線mysql報1045錯誤的解決方法:1、開啟my.ini組態檔;2、新增【skip-grant-tables】,儲存檔案;3、重新啟動mysql服務;4、登入mysql並修改密碼;5、退出登入並重新連線即可。

解決方法:

(推薦教學:)

首先開啟my.ini組態檔。

然後在mysqld欄位下面新增skip-grant-tables,儲存退出。

如果出現儲存失敗,請將mysql服務停止後,再儲存。

最後重新啟動mysql服務。

現在我們可以登入mysql資料庫了。

登入資料庫後重新修改密碼。

update user set password=password("root22") where user="root";

如果報錯「ERROR 1054 (42S22): Unknown column 'password' in 'field list'」那麼就要執行這個命令

update user set authentication_string=password('root22') where user='root';

完成之後,退出並重新連線即可。

相關推薦:

以上就是連線mysql報1045錯誤怎麼辦的詳細內容,更多請關注TW511.COM其它相關文章!