Vagrant + CentOS 7 - Apacheが起動せず、エラーは表示されません。

Vagrant + CentOS 7 - Apacheが起動せず、エラーは表示されません。

CentOS 7メインボックスで実行されるVagrantボックスを設定するのに時間がかかりました。

Apacheの新規インストール後にサーバーにアクセスhttpして再起動できますが、仮想ホストを追加するとすぐにhttpsエラーが発生します。以下は私の仮想ホストの例です。

<VirtualHost *:80>
    ServerName example.example.com
    DocumentRoot /var/www/example.example.com/web
    ErrorLog /var/www/example.example.com/error.log
    CustomLog /var/www/example.example.com/requests.log combined
</VirtualHost>

<VirtualHost *:443>
    # Admin email, Servername, and ailases
    ServerAdmin [email protected]
    ServerName example.example.com

    #Index file and document root
    DirectoryIndex index.php
    DocumentRoot /var/www/example.example.com/web

    #SSL certs
    SSLCertificateFile /etc/httpd/ssl/example.example.com.crt
    SSLCertificateKeyFile /etc/httpd/ssl/example.example.com.key

    #Log locations
    LogLevel warn
    ErrorLog /var/log/httpd/example.example.com/error.log
    CustomLog /var/log/httpd/example.example.com/requests.log combined
</VirtualHost>

これは私が実行したときに得るものですapachectl restart

Job for httpd.service failed. See 'systemctl status httpd.service' and 'journalctl -xn' for details.

だから、自然に指示に従って実行し、systemctl status httpd.service次のような結果を得ました。

httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled)
   Active: failed (Result: exit-code) since Wed 2015-07-29 00:56:20 UTC; 40s ago
  Process: 21318 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, status=0/SUCCESS)
  Process: 21317 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE)
 Main PID: 21317 (code=exited, status=1/FAILURE)
   Status: "Total requests: 11; Current requests/sec: 0; Current traffic:   0 B/sec"

Jul 29 00:56:20 localhost.localdomain systemd[1]: Starting The Apache HTTP Server...
Jul 29 00:56:20 localhost.localdomain systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE
Jul 29 00:56:20 localhost.localdomain systemd[1]: Failed to start The Apache HTTP Server.
Jul 29 00:56:20 localhost.localdomain systemd[1]: Unit httpd.service entered failed state.

実際のエラーは表示されず、単に失敗します。

編集:私のapachectl -t出力に対する要求は次のとおりです。

AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain. Set the 'ServerName' directive globally to suppress this message
Syntax OK

ベストアンサー1

おすすめ記事