連接mysql報1045錯誤的解決方法:1、開啟my.ini設定檔;2、新增【skip-grant-tables】,儲存檔案;3、重啟mysql服務;4、登入mysql並修改密碼;5、登出登入並重新連線即可。
解決方法:
(推薦教學:mysql教學)
首先開啟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';
完成之後,退出並重新連線即可。
相關推薦:php培訓
以上是連接mysql報1045錯誤怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!