centos ファイアウォールのシャットダウン コマンド: 1. 一時的にシャットダウンします。コードは [systemctl stop firewalld]、2. 起動を無効にします。コードは [systemctl disable firewalld] です。
この記事の動作環境: Windows7 システム、centos6&¢os7 バージョン、Dell G3 コンピューター。
centos ファイアウォールを閉じるコマンド:
CentOS6 次のコマンドを使用して、ファイアウォール
//临时关闭 service iptables stop //禁止开机启动 chkconfig iptables off
CentOS7 を閉じます。 CentOS7 で同じコマンドを使用するとエラーが報告されます。
stop iptables.service Failed to stop iptables.service: Unit iptables.service not loaded.
これは、CentOS7 バージョン以降、ファイアウォールがデフォルトで firewalld を使用するためです。そのため、CentOS7 でファイアウォールを無効にするには、次のコマンド
//临时关闭 systemctl stop firewalld //禁止开机启动 systemctl disable firewalld Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service. Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
もちろん、##iptables-service がインストールされている場合は、次のコマンド
yum install -y iptables-services //关闭防火墙 service iptables stop Redirecting to /bin/systemctl stop iptables.service //检查防火墙状态 service iptables status Redirecting to /bin/systemctl status iptables.service 鈼iptables.service - IPv4 firewall with iptables Loaded: loaded (/usr/lib/systemd/system/iptables.service; disabled; vendor preset: disabled) Active: inactive (dead)
も使用できます。無料のおすすめ: プログラミング ビデオ コース
以上がcentosのファイアウォールをオフにするコマンドは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。