Unit firewalld.service could not be found.
时间: 2024-06-13 19:09:11 浏览: 283
解决php-fpm.service not found问题的办法
5星 · 资源好评率100%
这个提示意味着防火墙服务没有安装或者没有启动。以下是两种安装防火墙服务的方法:
1. 使用yum安装防火墙服务:
```shell
yum install firewalld firewall-config
```
2. 使用dnf安装防火墙服务:
```shell
dnf install firewalld firewall-config
```
安装完成后,启动防火墙服务:
```shell
systemctl start firewalld
```
如果你想在系统启动时自动启动防火墙服务,可以使用以下命令:
```shell
systemctl enable firewalld
```
阅读全文