一、问题背景
操作系统: 阿里云 Centos7 操作系统
操作如下:
# 打开防火墙报错
systemctl start firewalld
#开启失败,报错提示信息
Failed to start firewalld.service: Unit is masked
二、问题原因和解决办法
- 防火墙被锁定了,需要解锁才可打开。
#执行解锁命令
systemctl unmask firewalld
#可看到 ,解除成功。可正常的开启防火墙了
#Removed symlink /etc/systemd/system/firewalld.service.
- 执行开启防火墙命令
#开启防火墙systemctl start firewalld#查看防火墙状态systemctl status firewalld#停止防火墙systemctl stop firewalld#永久关闭防火墙systemctl disable firewalld