連線MySQL時出現1449與1045異常解決辦法

bluetooth發表於2021-09-09

連線MySQL時出現1449與1045異常解決辦法

?

1 mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解決方法

把sql導到本地,執行儲存過程 或者 檢視影片報錯:

?

1 mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解決方法

許可權問題,授權 給 root  所有sql 許可權 

?

12345678910 mysql> grant all privileges on *.* to root@"%" identified by ".";  SQLException: The user specified as a definer ('ebook'@'%') does not exist:解決辦法grant all privileges on *.* to ebook@"%" identified by ".";Query OK, 0 rows affected (0.00 sec)  mysql> flush privileges;Query OK, 0 rows affected (0.00 sec)#Mysql

 連線時出現1045異常: 

如果是mysql 5.6以前的,輸入UPDATE mysql.user SET Password=PASSWORD('123456') WHERE User='root';

如果是mysql 5.6以後的,輸入UPDATE mysql.user SET authentication_string=PASSWORD('root') WHERE USER='root';

這是由於5.6以後user表中沒有password欄位。

輸入FLUSH PRIVILEGES; 重新整理資料庫。

如有疑問請留言或者到本站社群交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支援!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3402/viewspace-2810779/,如需轉載,請註明出處,否則將追究法律責任。

相關文章