1130 - Host ‘win7' is not allowed to connect to this mysql server
遠程連接自己或別人的mysql時,彈出了提示:“1130 - Host ‘win7' is not allowed to connect to this mysql server”,意思是主機不允許連接到mysql服務器,不允許的原因是連接方沒有足夠的權限。解決辦法有兩個:
方法一:
1)允許任何用戶連接:
update user set host='%' where user='root';
flush privileges;
2)允許ip 192.168.1.3連接
update user set host='192.168.1.3' where user='root';
flush privileges;
3)允許ip是192.168.1開頭的任何用戶連接:
update user set host='192.168.1%' where user='root';
flush privileges;
方法二:
1)允許任何用戶使用root/root連接
grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
flush? privileges;
2)允許用戶root從ip為192.168.1.3的主機連接到mysql服務器,并使用root作為密碼
grant all privileges on *.* to 'root'@'192.168.1.3' identified by 'root' with grant option;
flush privileges;
3)允許用戶root從ip為192.168.1.3的主機連接到mysql服務器的dk數據庫,并使用root作為密碼
grant all privileges on dk.* to 'root'@'192.168.1.3' identified by 'root' with grant option;
flush privileges;
轉載于:https://www.cnblogs.com/penguinseven/p/4747607.html
總結
以上是生活随笔為你收集整理的1130 - Host ‘win7' is not allowed to connect to this mysql server的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: haproxy配置参数详解
- 下一篇: linux cmake编译源码,linu