当前位置: 移动技术网 > IT编程>数据库>Mysql > CentOS7和CentOS6怎样开启MySQL远程访问

CentOS7和CentOS6怎样开启MySQL远程访问

2019年04月12日  | 移动技术网IT编程  | 我要评论

今天在的连接时候,发现连接不通过,并报错error 2003 (hy000): can't connect to  server on '192.168.10.210' (111) 
测试代码:

require 'mysql2'
client = mysql2::client.new(:host=>"192.168.10.210",:username=>'root',:password=>"root")
puts results = client.query("show databases;")

谷歌了一下之后,原来是在mysql的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  #这里默认监听本地localhost

如果要让mysql监听到其他的地址,可以将bind-address = 127.0.0.1注释掉。 
或者将bind-address = 0.0.0.0监听所有的地址

屏蔽掉之后再次运行代码又出现:host '192.168.10.83' is not allowed to connect to this mysql server 
这里写图片描述 
解决方法: 
如果想让192.168.10.83能够连接到本地的这个,要让数据库给其分配权限,登录mysql,执行:(username 和 password是登录mysql的用户名和密码)

grant all privileges on *.* to 'username'@'192.168.10.83' identified by 'password' with grant option;

如果要想所有的外部ip地址都能够访问使用mysql,可以执行下面:

grant all privileges on *.* to 'username'@'%' identified by 'password' with grant option;

之后执行刷新数据库:

flush privileges;

如果要查看用户的权限,可以执行:

> show grants for 'root'@192.168.10.83

这里写图片描述

以上摘抄于:

http://www.cnblogs.com/zihanxing/p/7049244.html

 

centos6开启mysql远程访问

1.开放访问端口3306

修改防火墙配置文件

vi /etc/sysconfig/iptables 

加入端口配置     

-a input -m state --state new -m tcp -p tcp --dport 3306 -j accept

重新加载规则

service iptables restart  


2.修改库里的host

登录mysql;

use mysql

update user set host='%' where user='root' and host='localhost';

记得一定还得修改密码,因为这时密码已失效,虽然本地还可以原密码登录,可远程改了host后还是没法访问

update user set password=password("root") where user='root'; 

flush privileges;

3.重启mysql,远程就可以访问了

service mysqld restart;


 centos7开启mysql远程访问

centos7这个版本的防火墙默认使用的是firewall,与之前的版本使用iptables不一样。按如下方便配置防火墙:

1、关闭防火墙:sudo systemctl stop firewalld.service


2、关闭开机启动:sudo systemctl disable firewalld.service

 

3、安装iptables防火墙

执行以下命令安装iptables防火墙:sudo yum install iptables-services

 

4、配置iptables防火墙,打开指定端口(centos6一样)

5、设置iptables防火墙开机启动:sudo systemctl enable iptables

6、之后的和centos6一样


centos下防火墙的基本操作命令

centos 配置防火墙操作实例(启、停、开、闭端口):

 

注:防火墙的基本操作命令:

查询防火墙状态:

[root@localhost ~]# service   iptables status

停止防火墙:

[root@localhost ~]# service   iptables stop 

启动防火墙:

[root@localhost ~]# service   iptables start 

重启防火墙:

[root@localhost ~]# service   iptables restart

永久关闭防火墙:

[root@localhost ~]# chkconfig   iptables off

永久关闭后启用:

[root@localhost ~]# chkconfig   iptables on

以上摘抄于:

https://www.cnblogs.com/qianzf/p/6995140.html

 

如果上述列出的方案不能够解决你遇到的问题,可以参考如下mysql官方网页:

https://dev.mysql.com/doc/refman/5.6/en/problems-connecting.html

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网