錯誤原因
遠程鏈接被限制吕朵,需要設置遠程鏈接的權限衅澈。
設置方法
- 本地登錄到mysql中
mysql -u root -p
- 在命令提示符下键菱,輸入使用mysql數據庫
use mysql;
- 查詢root的登錄權限
select host from user where user='root';
出現以下結果
從結果上可以看出,root賬戶是不允許遠程登錄今布,只能在localhost中经备。
- 修改權限
update user set host = '%' where user ='root';
- 更新配置
flush privileges;
從本地電腦連接服務器,成功部默!