httpd.conf で 443 を使用し、httpd を開始したい場合、エラー メッセージは次のようになります。
(98)Address already in use: make_sock: could not bind to address [::]:443
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:443
no listening sockets available, shutting down
Unable to open logs
実際、私は 443 を使用していません。次の方法で 443 のポートを確認します。
lsof -i:443
443のポートはssl.confで使われていると思いますので、httpd.confでは使えません。httpd.conf で 444 または 666 を使用すると、httpd を起動できます。
これがまさにその理由だ?