Apache2 - erroro_log

ultrakollega

Erfahrenes Mitglied
Hi!

Meine Apache2 Error_Log enthält momentan ziemlich viele solcher Zeilen:

[Thu Sep 15 20:59:39 2005] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Thu Sep 15 20:59:39 2005] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec2)
Destroying config 0x817b9b0
Destroying config 0x8179408
Destroying config 0x8178000
Destroying config 0x80f0c08
Creating new config (0x80f4b50) for (null)
[Thu Sep 15 20:59:40 2005] [notice] Apache/2.0.53 (Linux/SUSE) configured -- resuming normal operations
Creating new config (0x8178000) for /home/web1/public_html/
Getting open_basedir=/home/web1/public_html/ for 0x8178000 (0)
Getting include_path=/home/web1/public_html/__pepa_/PEAR/ for 0x8178000 (1)
Creating new config (0x817d588) for /home/web2/public_html/
Getting open_basedir=/home/web2/public_html/ for 0x817d588 (0)
Getting include_path=/home/web2/public_html/__pepa_/PEAR/ for 0x817d588 (1)
Creating new config (0x817b9b0) for /home/web3/public_html/
Getting open_basedir=/home/web3/public_html for 0x817b9b0 (0)
Getting include_path=/home/web3/public_html/__pepa_/PEAR/ for 0x817b9b0 (1)
Merge dir (0x80f4b50) (0x817d588)
Merge dir (0x80f4b50) (0x817d588)
Merge dir (0x80f4b50) (0x817d588)
Merge dir (0x80f4b50) (0x817d588)
Merge dir (0x80f4b50) (0x817d588)
Merge dir (0x80f4b50) (0x817d588)
APPLYING (open_basedir)(/home/web2/public_html/)
APPLYING (include_path)(/home/web2/public_html/__pepa_/PEAR/)
Merge dir (0x80f4b50) (0x817d588)
APPLYING (open_basedir)(/home/web2/public_html/)
APPLYING (include_path)(/home/web2/public_html/__pepa_/PEAR/)
Creating new config (0x8178000) for /home/web1/public_html/
Getting open_basedir=/home/web1/public_html/ for 0x8178000 (0)
Getting include_path=/home/web1/public_html/__pepa_/PEAR/ for 0x8178000 (1)
Creating new config (0x817d588) for /home/web2/public_html/
Getting open_basedir=/home/web2/public_html/ for 0x817d588 (0)
Getting include_path=/home/web2/public_html/__pepa_/PEAR/ for 0x817d588 (1)
Creating new config (0x817b9b0) for /home/web3/public_html/
Getting open_basedir=/home/web3/public_html for 0x817b9b0 (0)
Getting include_path=/home/web3/public_html/__pepa_/PEAR/ for 0x817b9b0 (1)
Creating new config (0x8178000) for /home/web1/public_html/

Apache2 startet ganz normal. Habe PHP5 am laufen.

Jemand ne Idee was das soll bzw. ob das normal ist?

Danke
 
Hallo!

Zur ersten Zeile:

Selfhtml sagt dazu:
warn
Alle Fehlermeldungen, auch die unkritischen, über die ein anfragender Client nicht informiert wird, werden protokolliert.
Beispiel: "[warn] Init: Session Cache is not configured [hint: SSLSessionCache] ..."
Ursache: Der Server ist zwar für den Einsatz von SSL (sichere Bedingungen) konfiguriert, aber es existiert kein Cache dafür.
Apache.org sagt dazu:
SSLSessionCacheDirective

Description: Type of the global/inter-process SSL Session Cache
Syntax: SSLSessionCache type
Default: SSLSessionCache none
Context: server config
Status: Extension
Module: mod_ssl

This configures the storage type of the global/inter-process SSL Session Cache. This cache is an optional facility which speeds up parallel request processing. For requests to the same server process (via HTTP keep-alive), OpenSSL already caches the SSL session information locally. But because modern clients request inlined images and other data via parallel requests (usually up to four parallel requests are common) those requests are served by different pre-forked server processes. Here an inter-process cache helps to avoid unneccessary session handshakes.

The following two storage types are currently supported:
  • none This is the default and just disables the global/inter-process Session Cache. There is no drawback in functionality, but a noticeable speed penalty can be observed.
  • dbm:/path/to/datafile This makes use of a DBM hashfile on the local disk to synchronize the local OpenSSL memory caches of the server processes. The slight increase in I/O on the server results in a visible request speedup for your clients, so this type of storage is generally recommended.
  • shm:/path/to/datafile[(size)] This makes use of a high-performance hash table (approx. size bytes in size) inside a shared memory segment in RAM (established via /path/to/datafile) to synchronize the local OpenSSL memory caches of the server processes. This storage type is not available on all platforms.
Examples

SSLSessionCache dbm:/usr/local/apache/logs/ssl_gcache_data
SSLSessionCache shm:/usr/local/apache/logs/ssl_gcache_data(512000)
Damit würde ich erstmal anfangen.

Zur zweiten Zeile:

Da könnte evtl. ein Blick in die Dokumentation zu suEXEC weiterhelfen.

Der Rest so scheint mir, sind Folgeerscheinungen.

Gruss Dr Dau
 
Zurück