【转】centos 设置防火墙


// 查看防火墙状态
firewall-cmd --state

// 打开防火墙
systemctl start firewalld

// 查看当前防火墙开放的端口
firewall-cmd --list-ports

// 添加80端口
firewall-cmd --zone=public --add-port=80/tcp --permanent

// 重载防火墙数据
firewall-cmd --reload

————————————————
版权声明:本文为CSDN博主「燕双嘤」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_42192693/java/article/details/101789718


Author: star
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source star !
 Previous
VScode Eslint 和 prettiner 代码风格冲突 VScode Eslint 和 prettiner 代码风格冲突
最近更新项目之后执行 npm run lint 会出现如下错误,那是因为新版的 prettier 和 eslint 的默认风格不一致,我们需要手动指定相对应的风格。 20 error code ELIFECYCLE 21 error e
2020-04-04 star
Next 
同时使用多个git账号 同时使用多个git账号
一、清除本地的原有账户信息# 查看是否存在全局配置 git config --global --list # 存在则直接清除全局配置信息 git config --global --unset user.name git config -
2020-03-21 star
  TOC