centos相关操作

| 分类 linux  | 标签 centos  linux  浏览次数: -

防火墙

  • 开启端口
firewall-cmd --zone=public --add-port=6379/tcp --permanent

--permanent: 表示永久生效,重启不会丢失配置。

  • 查询端口状态
firewall-cmd --query-port=6379/tcp
  • 查看开放端口列表
firewall-cmd --zone=public --list-ports
  • 关闭端口
firewall-cmd --remove-port=6379/tcp --permanent
  • 关闭防火墙
systemctl stop firewalld.service
  • 启动防火墙
systemctl start firewalld.service
  • 查看防火墙状态
firewall-cmd --state
  • 重启防火墙
# 不断开连接
firewall-cmd --reload

# 断开连接
firewall-cmd --complete-reload

上一篇 制作python虚拟环境包     下一篇 python操作excel
目录导航