mysql 錯誤搜集 1. Error 1130 Host 'xxxxxx' is not allowed to connect to this MYSQL server 這種錯誤通常是沒有權限,因為我是通過遠程連接到數(shù)據(jù)庫的 在服務端輸入如下命令 grant all privileges on *.* to 'root@%' identified by '111111' with grant
mysql 錯誤搜集1. Error 1130 Host 'xxxxxx' is not allowed to connect to this MYSQL server
這種錯誤通常是沒有權限,因為我是通過遠程連接到數(shù)據(jù)庫的
在服務端輸入如下命令
grant all privileges on *.* to 'root@%' identified by '111111' with grant option; flush privileges;
?
2. Error 1145 Access denied for user 'root'@'network' (using password: YES)
這種錯誤是需要修改數(shù)據(jù)庫密碼
服務器端輸入如下命令
set password for 'root@%' = password('111111'); flush privileges;
?
?
?
聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com