局域网访问mysql失败_局域网中mysql连接失败

这几天一直在搭建服务器,装Ubuntu,配置svn,mysql,设置共享机制。一切似乎很顺利,svn顺利同步,到mysql时,却卡壳了,一般mysql,root用户是禁止远程访问的,为了达到在局域网中mysql共享,创建了新的用户,供每个项目连接使用,贴图如下:

root用户登陆mysql,创建新用户:

0818b9ca8b590ca3270a3433284dd417.png

赋权限:

0818b9ca8b590ca3270a3433284dd417.png

刷新权限表:

0818b9ca8b590ca3270a3433284dd417.png

本地连接时,报错,小#大师一句话便连接成功了:禁掉配置文件里的 bind address,谢谢小#  !

网上朋友配置如下:

原因就是Mysql数据库的默认配置文件my.cnf(linux下)中的bind-address默认为127.0.0.1,所以就算你创建了可以 remote访问的用户,你也不能使用mysql -h命令进行访问,若访问就会出现上出问题,因为此时Mysql只接受localhost,所以需要把bind-address屏蔽掉。

my.cnf一般在/etc/mysql下面,如果不在使用locate my.cnf查找,修改前的my.cnf配置文件为:

修改前的my.cnf配置文件代码#

# Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

bind-address           = 127.0.0.1

#

# Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

bind-address           = 127.0.0.1

我们需要做的就是屏蔽这个bind-address代码,屏蔽后代码为:

屏蔽后my.cnf配置文件代码#

# Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

#bind-address           = 127.0.0.1

#

# Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

#bind-address           = 127.0.0.1

到此结束,连接成功!

你可能感兴趣的:(局域网访问mysql失败)