作者: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-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设置修改系统日期和时间的方法
2016-09-26CentOS系统手动释放内存方法
2016-09-05Shadowsocks-libev一键安装脚本(CentOS6,7)
2016-06-04Linux服务器防火墙规则iptables修改后无法保存
2016-03-02CentOS安装内核头文件的操作方法