AlmaLinux8.4にファイアウォールとSELinuxを無効化にする
1.ファイアウォールサービスを停止
[root@localhost ~]# systemctl stop firewalld
自動起動設定を無効にする
[root@localhost ~]# systemctl disable firewalld
Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
2.SELinux を無効にする
[root@localhost ~]# vi /etc/selinux/config
修正前
#SELINUX=enforcing
修正後
SELINUX=disabled
3.再起動
[root@localhost ~]# reboot