Apache の一時的な無効化処理について
Apache を一時的に無効にする方法として
/etc/httpd/conf/httpd.conf の LISTEN をコメントアウトすればいい
と聞いたので、試しに LISTEN 0 を指定してみたところ、これでも無効にすることができました
一方SSLの場合は ssl.conf の拡張子を変更して読めなくするなどの処理が必要らしいのですが…
LISTENをコメントアウトして
#LISTEN 443 https
にしてみたところ…
[root@admin]# netstat -n -a |grep cp|grep LIST tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN tcp6 0 0 :::80 :::* LISTEN tcp6 0 0 :::22 :::* LISTEN tcp6 0 0 :::23 :::* LISTEN |
うまくいってるような…
試しにこちらもポート 0を試してみます
-- Unit httpd.service has begun starting up. 7月 07 11:09:02 platformv httpd[6064]: AH00526: Syntax error on line 5 of /etc/httpd/conf.d/ssl.conf: 7月 07 11:09:02 platformv httpd[6064]: Invalid address or port 7月 07 11:09:02 platformv systemd[1]: httpd.service: Main process exited, code=exited, status=1/FAILURE 7月 07 11:09:02 platformv systemd[1]: httpd.service: Failed with result 'exit-code'. 7月 07 11:09:02 platformv systemd[1]: Failed to start The Apache HTTP Server. -- Subject: Unit httpd.service has failed -- Defined-By: systemd -- Support: https://access.redhat.com/support -- -- Unit httpd.service has failed. |
こちらはだめでした!
Comments