博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS7使用httpd apache 和firewalld打开关闭防火墙与端口
阅读量:5220 次
发布时间:2019-06-14

本文共 1573 字,大约阅读时间需要 5 分钟。

Centos7 使用systemctl 工具操作命令

 

systemctl 是Centos7的服务管理工具中的主要工具 ,它融合之前service和chkconfig的功能于一体

 

一、httpd的设置

第一 、 httpd 服务的启动 停止 重启

启动 : systemctl start httpd.service 

停止:    systemctl stop httpd.service 

重启:     systemctl restart httpd.service

 

查看httpd 的状态

systemctl status httpd.service

 

第二、将httpd 服务设置开机启动

设置为开机启动 :  systemctl enable httpd.service

设置开机不启动:   systemctl disable httpd.service 

 

二、防火墙设置

firewalld 打开关闭防火墙端口

    1.启动:  systemctl start firewalld

    2.查看状态: systemctl status firewalld

    3.停止: systemctl stop firewalld

    4.禁用:systemctl disable firewalld

 

使用systemctl命令

启动一个服务:     systemctl start firewalld.service 

停止一个服务:     systemctl stop firewalld.service

重启一个服务:    systemctl restart firewalld.service 

查看一个服务的状态 :    systemctl status firewalld.service

在开机时启动一个服务:    systemctl enable firewalld.service 

在开机时禁用一个服务:    systemctl disable firewalld.service

查看已经启动的服务列表法:  systemctl list-unit-files|grep enabled

查看启动失败的服务: systemctl --failed

 

 

配置  firewall-cmd 

查看版本:firewall-cmd --version

查看帮助:  firewall-cmd --help

查看状态:  firewall-cmd --state

查看所有打开的端口:  firewall-cmd --zone=public --list-ports

更新防火墙规则: firewall-cmd --reload

查看区域信息: firewall-cmd --get-active-zones

查看指定接口所属区域: firewall-cmd --get-zone-of-interface=eth0

拒绝所有包:firewall-cmd --panic-on
取消拒绝状态: firewall-cmd --panic-off
查看是否拒绝: firewall-cmd --query-panic

 

开启一个端口

firewall-cmd --zone=public --add-port=80/tcp --permanent (--permanent 这个参数是永久生效,如果不设置这个参数,默认重启后就失效)

重新载入,使设置剩下

firewall-cmd --reload

查看

firewall-cmd --zone=public --query-port=80/tcp

删除

firewall-cmd --zone=public --remove-port=80/tcp --permanent

 

转载于:https://www.cnblogs.com/kangxinxin/p/9615599.html

你可能感兴趣的文章
转 大话权限设计
查看>>
如何 Mock 非虚方法和密封类?
查看>>
判断应用程序是控制台程序还是窗体程序
查看>>
hdu 相遇周期
查看>>
Hive分区表增加字段新增字段值为空的bug
查看>>
rman catalog配置简要笔记
查看>>
Test SRM Level One: TemperatureScales
查看>>
ListView
查看>>
Vue自动化工具(Vue-CLI)
查看>>
十、IntelliJ IDEA 中 Project 和 Module 的概念及区别
查看>>
用户用户组管理:用户管理命令useradd
查看>>
站立会议个人博客2(2016/4/20)
查看>>
调用电话短信
查看>>
Ubunut16.04 deb包的安装与卸载
查看>>
【Oracle 存储过程和存储函数】 (1) 使用和创建存储过程,第一个存储过程
查看>>
KMP算法模板
查看>>
模版-树链剖分
查看>>
poj_1579 && hdoj_1331
查看>>
【VS开发】【Live555-rtsp】RTSP服务器实例live555源代码分析
查看>>
实验9
查看>>