hallo,
Ich hab was entdeckt unter "/var/log/httpd". Ich nehme an, bei den SIGTERM-Einträge wurde der Server gestoppt.
Ja, sieht so aus, obwohl die letzte mitgepostete Zeile eigentlich die Aufnahme des Normalbetriebs verkündet. Es gibt aber ein paar wichtige Dinge in deinem log:
[client 192.168.1.73]
Das bedeutet, daß du gar keine 192.168.x.x hast und deine Eintragung unter "ServerName" unwirksam ist.
[client 192.168.1.73] PHP Warning: Unknown: failed to open stream: Keine Berechtigung in Unknown on line 0
Da ist deine PHP-Installation nicht korrekt, PHP "läuft nicht".
[Tue Feb 14 14:46:38 2006] [error] [client 192.168.1.73] File does not exist: /var/www/html/kwkw/favicon.ico
Eine sehr häufige Fehlermeldung, die aber trotz "error" harmlos ist. Leg irgendein Favicon in dein Verzeichnis, dann hat sich das.
[Tue Feb 14 14:47:34 2006] [notice] caught SIGTERM, shutting down
[Tue Feb 14 14:47:36 2006] [notice] core dump file size limit raised to 4294967295 bytes
Da hat was gescheppert ...
[Tue Feb 14 14:47:37 2006] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Tue Feb 14 14:47:38 2006] [notice] Digest: generating secret for digest authentication ...
[Tue Feb 14 14:47:38 2006] [notice] Digest: done
[Tue Feb 14 14:47:38 2006] [notice] LDAP: Built with OpenLDAP LDAP SDK
[Tue Feb 14 14:47:38 2006] [notice] LDAP: SSL support unavailable
SSL solltest du in der httpd.conf erstmal auskommentieren.
[Tue Feb 14 14:47:39 2006] [notice] mod_python: Creating 4 session mutexes based on 150 max processes and 0 max threads.
[Tue Feb 14 14:47:40 2006] [notice] Apache/2.0.54 (Fedora) configured -- resuming normal operations
Das sind wieder Verlaufsmeldungen
[Tue Feb 14 15:03:48 2006] [notice] Apache/2.0.54 (Fedora) configured -- resuming normal operations
Deine Apache-Version ist 2.0.54, und nicht, wie du angegeben hast, 2.0.55
Korrigiere deine PHP-Installation und klammere alles andere vorläufig aus (SSL, mod_python usw.) und nimm das nach und nach in Betrieb, sobald dein Apache erstmal läuft.
Grüße aus Berlin
Christoph S.