0

syslogd が再始動した後、Apache は許可拒否エラーのログ記録を開始しました。箱には何も変わっていません。パーミッションは全面的に 755 で、設定ファイルは変更されていません。Web フォルダーにつながるすべてのフォルダーのアクセス許可を 777 に設定し、httpd を再起動しました。SElinux 無効。CentOS リリース 5.7。何か案は?

[user@host log]$ sudo cat messages
Jun 23 04:02:55 systools syslogd 1.4.1: restart.

[user@host log]$ head /etc/httpd/logs/error_log
[Sun Jun 23 04:03:02 2013] [notice] Digest: generating secret for digest authentication ...
[Sun Jun 23 04:03:02 2013] [notice] Digest: done
[Sun Jun 23 04:03:04 2013] [notice] mod_python: Creating 4 session mutexes based on 256 max processes and 0 max threads.
[Sun Jun 23 04:03:05 2013] [notice] Apache/2.2.3 (CentOS) configured -- resuming normal operations
[Sun Jun 23 04:04:16 2013] [error] [client 192.168.1.190] (13)Permission denied: access to /incident/rss.php denied
[Sun Jun 23 04:09:14 2013] [error] [client 192.168.1.190] (13)Permission denied: access to /incident/rss.php denied
[Sun Jun 23 04:14:14 2013] [error] [client 192.168.1.190] (13)Permission denied: access to /incident/rss.php denied
[Sun Jun 23 04:19:15 2013] [error] [client 192.168.1.190] (13)Permission denied: access to /incident/rss.php denied
[Sun Jun 23 04:24:16 2013] [error] [client 192.168.1.190] (13)Permission denied: access to /incident/rss.php denied

    Forbidden

You don't have permission to access / on this server.
Apache/2.2.3 (CentOS) Server at systools.corp.webex.com Port 80
4

1 に答える 1

0

ファイルのパーミッションを変更し、httpd を再起動しました。

find /var/www -type d -exec chmod 775 {} \; find /var/www -type f -exec chmod 664 {} \; /etc/init.d/http restart
于 2013-06-26T18:53:10.793 に答える