SQL Server2008的安装,SQLServer2008的安装......
2023-02-22 270 安装
CentOS 7.x默认只安装firewalld作为默认防火墙,但在CentOS 6.x的时候是用iptables作为防火墙,所以习惯使用iptables的人可以使用iptables替代firewalld。本文介绍如何在CentOS 7.x中安装并使用iptables。
在操作之前,先介绍下在本文会使用到几个命令
查看指定服务的状态:systemctl status [service_name]
开始指定服务:systemctl start[service_name]
停用指定服务:systemctl stop[service_name]
启用指定服务:systemctl enable[service_name]
禁用指定服务:systemctl disable[service_name]
打开“终端”,因为作为开发学习用的机子,默认的图形界面
在“终端”中切换到root帐号
# su root
否则,在接下去的操作中会不停的提示你输入root帐号密码
停用firewalld
# systemctl stop firewalld
禁止开机启动firewalld
# systemctl disable firewalld
再查看下firewalld的信息
# systemctl status firewalld
CentOS 7.x默认是不安装iptables,所以我们先安装iptables
查看iptables的信息
# systemctl status iptables
安装iptables
# yum install iptables
再安装iptables-services
# yum install iptables-services
PS:如果你想安装过程不用干涉,则可使用以下命令:
# yum install -y iptables
# yum install -y iptables-services
这样完成iptables防火墙的安装了
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
相关文章