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

Posted 锋齐叶落

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7和CentOS6怎样开启MySQL远程访问相关的知识,希望对你有一定的参考价值。

CentOS6开启mysql远程访问

1.开放MySQL访问端口3306

修改防火墙配置文件

vi /etc/sysconfig/iptables 

加入端口配置     

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

重新加载规则

service iptables restart  


2.修改mysql库里的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 配置防火墙操作实例(启、停、开、闭端口):

 

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

查询防火墙状态:

[[email protected] ~]# service   iptables status

停止防火墙:

[[email protected] ~]# service   iptables stop 

启动防火墙:

[[email protected] ~]# service   iptables start 

重启防火墙:

[[email protected] ~]# service   iptables restart

永久关闭防火墙:

[[email protected] ~]# chkconfig   iptables off

永久关闭后启用:

[[email protected] ~]# chkconfig   iptables on

 

1、查看防火墙状态

[[email protected] ~]# service iptables status

技术分享

 

2、编辑/etc/sysconfig/iptables文件。我们实例中要打开8080端口和9990端口

用编辑器打开/etc/sysconfig/iptables 

技术分享

 

4、保存/etc/sysconfig/iptables文件,并在终端执行

[[email protected] ~]# service iptables restart 

技术分享

 

5、从新查看防火墙状态

[[email protected] ~]# service iptables status

技术分享

 

6、这时候,服务器的8080和9990端口就可以对外提供服务了。

7、其他端口的开放模式就是类似如此开放模式。









以上是关于CentOS7和CentOS6怎样开启MySQL远程访问的主要内容,如果未能解决你的问题,请参考以下文章

关于Centos7和Centos6中新分区如何开启acl功能

centos7 怎样查看防火墙状态呢?

centos7 怎样更改root密码

怎样激活centos7中的php

centos7和centos6.5环境rpm方式安装mysql5.7和mysql5.6详解

centos7安装时怎样将网卡名改为centos6的形式