远程登录mysql
Posted 地球上的我
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了远程登录mysql相关的知识,希望对你有一定的参考价值。
1130 - Host‘ClientIP‘ is not allowed to connect to this MySQL server。
解决方法:
使用root 用户登陆Linux,登陆mysql的root用户,更改容许登陆的IP地址范围。
- [[email protected] ~]# mysql -u root -p
- mysql>grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘密码‘ with grant option;
这段指令容许所有用root用户输入密码登陆该mysql server,如果将‘%‘ 换成‘192.168.1.100‘ ,那么只有‘192.168.1.100‘的主机可以登陆。
以上是关于远程登录mysql的主要内容,如果未能解决你的问题,请参考以下文章