Question regarding MM

Question regarding MM

am 19.09.2002 01:37:31 von Gilles GROS

Hi,

I have a simple question, but I am still unable to find the answer in the
docs.

What are the use and benefit of using MM with mod_ssl?

Thank you for your insight.

Gilles

____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

RE: Question regarding MM

am 19.09.2002 01:39:33 von Lynn Gazis

It lets you use shared memory session caching; the session cache which gets
the best performance is a shared memory cache, the shmcb cache.

Lynn Gazis

-----Original Message-----
From: Gilles Gros [mailto:gillesg@whitepj.com]
Sent: Wednesday, September 18, 2002 4:38 PM
To: modssl-users@modssl.org
Subject: Question regarding MM


Hi,

I have a simple question, but I am still unable to find the answer in the
docs.

What are the use and benefit of using MM with mod_ssl?

Thank you for your insight.

Gilles

____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

RE: Question regarding MM

am 19.09.2002 21:01:27 von Gilles GROS

Can you give me pointer on description of these configuration directives.

Thanks
Gilles

> -----Original Message-----
> From: owner-modssl-users@modssl.org
> [mailto:owner-modssl-users@modssl.org]On Behalf Of Lynn Gazis
> Sent: Wednesday, September 18, 2002 4:40 PM
> To: 'modssl-users@modssl.org'
> Subject: RE: Question regarding MM
>
>
> It lets you use shared memory session caching; the session cache
> which gets
> the best performance is a shared memory cache, the shmcb cache.
>
> Lynn Gazis
>
> -----Original Message-----
> From: Gilles Gros [mailto:gillesg@whitepj.com]
> Sent: Wednesday, September 18, 2002 4:38 PM
> To: modssl-users@modssl.org
> Subject: Question regarding MM
>
>
> Hi,
>
> I have a simple question, but I am still unable to find the answer in the
> docs.
>
> What are the use and benefit of using MM with mod_ssl?
>
> Thank you for your insight.
>
> Gilles
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

RE: Question regarding MM

am 19.09.2002 21:18:01 von Lynn Gazis

Once you have installed Apache 1.3.x, you have in your conf directory an
httpd.conf file which contains the lines:

# Inter-Process Session Cache:
# Configure the SSL Session Cache: First the mechanism
# to use and second the expiring timeout (in seconds).
#SSLSessionCache none
#SSLSessionCache shmht:/usr/local/apache/logs/ssl_scache(512000)
#SSLSessionCache shmcb:/usr/local/apache/logs/ssl_scache(512000)
SSLSessionCache dbm:/usr/local/apache/logs/ssl_scache
SSLSessionCacheTimeout 300

(In the case of Apache 2.0.x, these lines would be in ssl.conf, and you
wouldn't be using modssl, since that is built into the Apache 2.0
distribution already.)

The best performance session caching comes if you change these lines to:

# Inter-Process Session Cache:
# Configure the SSL Session Cache: First the mechanism
# to use and second the expiring timeout (in seconds).
#SSLSessionCache none
#SSLSessionCache shmht:/usr/local/apache/logs/ssl_scache(512000)
SSLSessionCache shmcb:/usr/local/apache/logs/ssl_scache(512000)
#SSLSessionCache dbm:/usr/local/apache/logs/ssl_scache
SSLSessionCacheTimeout 300

to turn on the shmcb session cache instead of the dbm one. However, in
order for this to work, you will likely need to use the MM package (which
can be downloaded from http://www.ossp.org/pkg/lib/mm/ - see that site for
further information about this package).

Lynn Gazis

-----Original Message-----
From: Gilles Gros [mailto:gillesg@whitepj.com]
Sent: Thursday, September 19, 2002 12:01 PM
To: modssl-users@modssl.org
Subject: RE: Question regarding MM


Can you give me pointer on description of these configuration directives.

Thanks
Gilles

> -----Original Message-----
> From: owner-modssl-users@modssl.org
> [mailto:owner-modssl-users@modssl.org]On Behalf Of Lynn Gazis
> Sent: Wednesday, September 18, 2002 4:40 PM
> To: 'modssl-users@modssl.org'
> Subject: RE: Question regarding MM
>
>
> It lets you use shared memory session caching; the session cache
> which gets
> the best performance is a shared memory cache, the shmcb cache.
>
> Lynn Gazis
>
> -----Original Message-----
> From: Gilles Gros [mailto:gillesg@whitepj.com]
> Sent: Wednesday, September 18, 2002 4:38 PM
> To: modssl-users@modssl.org
> Subject: Question regarding MM
>
>
> Hi,
>
> I have a simple question, but I am still unable to find the answer in the
> docs.
>
> What are the use and benefit of using MM with mod_ssl?
>
> Thank you for your insight.
>
> Gilles
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org