常用宝塔命令之宝塔关闭防火墙命令记录
时间:2024年03月01日
/来源:网络
/编辑:佚名
命令禁止防火墙进行调试。这里简单的把宝塔面板的防火墙关闭看看。顺带记录下宝塔面板的防火墙处理脚本。
Centos 6.x
service iptables stop #停止
chkconfig iptables off #禁用
Centos 7:
systemctl stop firewalld.service #停止
systemctl disable firewalld.service #禁用
Ubuntu/Debian:
ufw disable #方法1
sudo ufw disable #方法2
非特殊需求建议用宝塔自带的防火墙开启端口。开启方法:替换stop/disable为start/enable。
Centos 6.x
service iptables stop #停止
chkconfig iptables off #禁用
Centos 7:
systemctl stop firewalld.service #停止
systemctl disable firewalld.service #禁用
Ubuntu/Debian:
ufw disable #方法1
sudo ufw disable #方法2
非特殊需求建议用宝塔自带的防火墙开启端口。开启方法:替换stop/disable为start/enable。
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03