CentOS ファイアウォールが起動できない問題の解決方法
突然、centos 7 ファイアウォールが起動できなくなり、ファイアウォールが起動できないことに気づきました。 -cmd コマンドがエラーを報告しました。ファイアウォール 起動エラーは次のとおりです:
[root@localhost firewalld]# systemctl start firewalld.service Job for firewalld.service failed because the control process exited with error code. See "systemctl status firewalld.service" and "journalctl -xe" for details. [root@localhost firewalld]# systemctl status firewalld.service ● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since 三 2020-01-08 10:43:48 CST; 10s ago Docs: man:firewalld(1) Process: 29630 ExecStart=/usr/sbin/firewalld --nofork --nopid $FIREWALLD_ARGS (code=exited, status=127) Main PID: 29630 (code=exited, status=127)
firewall-cmd コマンドは次のようにエラーを実行します: (推奨学習: Linux ビデオ チュートリアル )
[root@localhost yangl]# firewall-cmd Traceback (most recent call last): File "/usr/bin/firewall-cmd", line 24, in <module> from gi.repository import GObject ImportError: No module named gi.repository
理由は、インストールされた Python をカスタマイズする を使用し、独自にインストールされた Python をデフォルトの Python として使用するためです (さらに、システムのデフォルトの Python を python3 にアップグレードすると、同様の問題が発生する可能性があります)。なので、replace firewalld と firewall-cmd 1行目で呼ばれるpythonをsystem pythonに変更するだけで解決できます。
私の Python リンク方法は次のとおりです:
[root@localhost yangl]# cd /usr/bin/ [root@localhost bin]# ll python* lrwxrwxrwx. 1 root root 16 9月 28 2018 python -> /usr/bin/python2 lrwxrwxrwx. 1 root root 39 9月 28 2018 python2 -> /share/soft/python-2.7.15/bin/python2.7 -rwxr-xr-x. 1 root root 7216 7月 13 2018 python2.7 #系统的python lrwxrwxrwx. 1 root root 9 9月 28 2018 python2_old -> python2.7 lrwxrwxrwx. 1 root root 36 3月 7 2018 python3 -> /share/soft/python-3.6.4/bin/python3 lrwxrwxrwx. 1 root root 7 9月 28 2018 python_old -> python2
つまり、 vi で /usr/sbin/firewalld と /usr/bin/firewall-cmd を開き、最初の行を # ! で変更するだけです。 /usr/bin/python -Es は #!/usr/bin/python2.7 -Es! に変更できます。
この記事は、PHP 中国語 Web サイトの CentOS 使用法チュートリアル 列からのものです。関連するチュートリアルについては、この列に注目してください。
以上がCentOSファイアウォールが開かない問題の解決方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。