局域网中mysql连接失败

来源:互联网 发布:unix内核源码剖析 pdf 编辑:程序博客网 时间:2024/05/16 13:51

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

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

赋权限:

刷新权限表:

本地连接时,报错,小#大师一句话便连接成功了:禁掉配置文件里的 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

到此结束,连接成功!

0 0