以下のエラーにより、apacheの起動が出来なくなってしまいました。
AH00015: Unable to open logs
前提
CentOS 6.5
以下の手順でapacheのインストールを行っております。
参考にした記事
// 古いアパッチのアンインストール rpm -ev httpd-2.2.15-69.el6.centos.x86_64 yum install centos-release-scl yum-config-manager --enable rhel-server-rhscl-6-rpms yum install httpd24-httpd httpd24-mod_proxy_html httpd24-mod_session httpd24-mod_ssl httpd24-httpd-devel scl enable httpd24 bash echo 'source /opt/rh/httpd24/enable' >> /etc/profile.d/httpd24.sh ln -s /opt/rh/httpd24/root/etc/httpd/ /etc/httpd ln -s /opt/rh/httpd24/root/var/www/ /var/www // 起動済みの古いApacheを止める service httpd stop chkconfig httpd off service httpd24-httpd start chkconfig httpd24-httpd on service httpd24-httpd restart httpd を停止中: [ OK ] httpd を起動中: (13)Permission denied: AH00091: httpd: could not open error log file /usr/local/httpd-2.4.46/logs/error_log. AH00015: Unable to open logs [失敗] // パーミッションを777に変更 chmod 777 /usr/local/httpd-2.4.46/logs/error_log service httpd24-httpd restart httpd を起動中: AH00557: httpd: apr_sockaddr_info_get() failed for domain.ne.jp AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message (13)Permission denied: AH00091: httpd: could not open error log file /usr/local/httpd-2.4.46/logs/error_log. AH00015: Unable to open logs' // httpd.confのServerNameやListenポートをいじっていると上記のエラーは消えましたが、根本の解決にはなっていないように思います。 vi opt/rh/httpd24/root/etc/httpd/conf/httpd.conf - #Listen 80 + Listen 8080 - #ServerName www.example.com:80 + ServerName www.example.com:80 service httpd24-httpd start httpd を起動中: [失敗] // error.logを確認 AH00015: Unable to open logs // パーミッションを変更してみる chmod 777 /opt/rh/httpd24/root/etc/httpd/logs/error_log chown apache:apache /opt/rh/httpd24/root/etc/httpd/logs/error_log // 結果変わらず。
基礎知識が乏しいまま、調べながらで実行をしている為、誤っている箇所などがあればご指摘いただけますでしょうか。
「AH00015: Unable to open logs」のエラーについて、原因や探り方が分かれば教えていただきたいです。
よろしくお願いいたします。
別のログでエラーをはいていたので追記させていただきます。
[Wed Aug 26 15:04:58.659151 2020] [log_config:error] [pid 16182] (13)Permission denied: AH00649: could not open transfer log file /usr/local/httpd-2.4.46/logs/ssl_request_log.
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。