Arjen de Korte changed bug 842377
What Removed Added
CC   suse+build@de-korte.org

Comment # 11 on bug 842377 from
The update isn't working. With the socache_shmcb_module (shared) loaded, I get
the following message in /var/log/apache2/error_log:

AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]

The reason is in /etc/apache2/ssl-global.conf the lines

    49          <IfModule socache_shmcb>
    50          SSLSessionCache        
shmcb:/var/lib/apache2/ssl_scache(512000)
    51          </IfModule>

The conditional in line 49 isn't correct and should be written as either

    <IfModule socache_shmcb_module>
or
    <IfModule mod_socache_shmcb.c>

Other conditionals in configuration files seem to favor the latter notation by
the way.

Note that the commented out section in the same file

    45          #<IfModule socache_dbm>
    46          #SSLSessionCache         dbm:/var/lib/apache2/ssl_scache
    47          #</IfModule>

suffers from the a similar error.


You are receiving this mail because: