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

在搭建服务器并配置MySQL时遇到局域网访问失败的问题。通过创建新用户并赋予远程访问权限,以及修改my.cnf配置文件,屏蔽bind-address为127.0.0.1的行,最终成功实现局域网内的MySQL连接。
摘要由CSDN通过智能技术生成

这几天一直在搭建服务器,装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

到此结束,连接成功!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值