作者:admin人气:0来源:网吧系统下载站2016-11-18 10:15:40
一、配置防火墙,开启80端口、3306端口
CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
2、安装iptables防火墙
yum -y install iptables-services #安装
systemctl restart iptables.service #最后重启防火墙使配置生效
systemctl enable iptables.service #设置防火墙开机启动
可选关闭SELINUX
vi /etc/selinux/config
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
:wq! #保存退出
setenforce 0 #使配置立即生效
2017-05-11CentOS7怎么用命令行链接wifi
2017-04-14centos7安装后如何解决缺少网卡
2017-04-08vitualbox虚拟机里centos 7如何安装
2017-03-08红帽Linux系统企业版(CentOS7) v7.2.1611 正式版
2017-01-12Linux iptables 内网转发映射方案
2016-12-22Centos 字体安装方法
2016-12-22解决VM虚拟机装Centos无法自动获取IP
2016-11-24用date命令给CentOS Linux设置修改系统日期和时间的方法