[root@blog zones]# systemctl status firewalld○ firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (;;file://blog/usr/lib/systemd/system/firewalld.service/usr/lib/systemd/system/firewalld.service;;; disabled; vendor preset: enabled) Active: inactive (dead) Docs: ;;...
firewall-cmd --reload 现在,80 端口应该已经在防火墙中打开了。 3. SELinux 配置 如果你的 Rocky Linux 9 上启用了 SELinux,还需要进行以下配置以允许 80 端口的访问。 检查SELinux 状态: sestatus 如果SELinux 状态显示为 "Enforcing",则需要进行 SELinux 配置。如果状态显示为 "Disabled",则可以跳过此步骤。
firewall-cmd--reload 现在,80 端口应该已经在防火墙中打开了。 3. SELinux 配置 如果你的 Rocky Linux 9 上启用了 SELinux,还需要进行以下配置以允许 80 端口的访问。 检查SELinux 状态: 代码语言:shell 复制 sestatus 如果SELinux 状态显示为 "Enforcing",则需要进行 SELinux 配置。如果状态显示为 "Disabled...
sudo firewall-cmd --permanent --add-port=10050/tcp sudo firewall-cmd --permanent --add-port=10051/tcp sudo firewall-cmd --reload 安装和配置 Zabbix 服务器 现在我们已经准备好了 Rocky Linux 9 系统,并且已经更新了系统并安装了必要的软件包。 安装MariaDB 数据库 Zabbix 需要一个数据库来存储监控数...
在Rocky Linux 中,你可以使用firewalld来管理防火墙规则。以下是关闭所有端口并重新开放所需端口的步骤: 步骤1:关闭所有端口 首先,你需要关闭所有端口。你可以使用firewall-cmd命令来实现这一点: 1 2 sudofirewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="0.0.0.0/0" reject' ...
选择install rocky_linux进入安装界面 选择语言种类后,设置一个root密码即可开始安装系统 二、系统安装后进行初始化配置 查看防火墙以及Selinux状态 #查看防火墙状态systemctl status firewalld#查看selinux状态getenforce 1. 2. 3. 4. 当前为开启状态,下来我们关闭防火墙与Selinux ...
sudofirewall-cmd --permanent --add-port=10050/tcpsudofirewall-cmd --permanent --add-port=10051/tcpsudofirewall-cmd --reload 安装和配置 Zabbix 服务器 现在我们已经准备好了 Rocky Linux 9 系统,并且已经更新了系统并安装了必要的软件包。
[root@localhost ~]# systemctl disable firewalld # 启用防火墙 [root@localhost ~]# systemctl enable firewalld 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. SELinux配置 # 禁用SELinux [root@localhost ~]# setenforce 0 [root@localhost ~]# sed -i "s/SELINUX=enforcing/SELINUX=disabled/g"...
首先,通过使用 `netstat` 命令检查 80 端口状态,以确认其当前状态。若该端口处于监听状态,表明已打开。接着,配置防火墙规则,使用 `firewalld` 工具打开 80 端口。对于防火墙状态检查和规则配置的步骤,确保端口通过防火墙开放。考虑到 SELinux 的安全性,若系统启用,需进行相应配置以允许访问 80 ...
对于Rocky Linux 9,更新存储库配置文件以将$stream替换为9-stream。这将使我们能够在 Rocky Linux 9 系统上使用 CentOS Stream 9 存储库。 for repo in oVirt-4.5 Storage-common OpenStack-yoga Messaging-rabbitmq NFV-OpenvSwitch Ceph-Pacific Gluster-10 OpsTools; do ...