Re: [BugDB] Performance issue (PR#723)

2002-07-01 Thread Denis A.V.Jr.

Hi Lutz...

I compile apache using...: (from mod_ssl dir)

export CFLAGS='-DHARD_SERVER_LIMIT=8192'; ./configure
--disable-rule=DEV_RANDOM --disable-rule=EXPAT --disable-rule=IRIXN32
--disable-rule=IRIXNIS --disable-rule=SHARED_CHAIN
--disable-rule=WANTHSREGEX --enable-module=most
--enable-module=mmap_static --enable-shared=max
--with-apache=../apache_1.3.26 --with-ssl=../openssl-0.9.6d
--prefix=/opt/apache-1.3.26

cd ../apache_1.3.26
make


and I have...:

denao@isherwood /opt/apache-1.3.26# bin/httpd -l
Compiled-in modules:
  http_core.c
  mod_so.c
suexec: disabled; invalid wrapper /opt/apache-1.3.26/bin/suexec

and at the conf, I call...:

LoadModule mmap_static_module libexec/mod_mmap_static.so
IfDefine access_log
LoadModule config_log_module  libexec/mod_log_config.so
/IfDefine
#LoadModule mime_magic_module  libexec/mod_mime_magic.so
LoadModule mime_modulelibexec/mod_mime.so
IfDefine status
LoadModule status_module  libexec/mod_status.so
LoadModule info_modulelibexec/mod_info.so
/IfDefine
LoadModule imap_modulelibexec/mod_imap.so
LoadModule access_module  libexec/mod_access.so
LoadModule expires_module libexec/mod_expires.so
LoadModule setenvif_modulelibexec/mod_setenvif.so
LoadModule negotiation_module libexec/mod_negotiation.so
#LoadModule vhost_alias_module libexec/mod_vhost_alias.so
LoadModule ssl_module libexec/libssl.so

The real strange thing here, is that those high loads never happens
using apache1.3.22 and mod_ssl 2.8.5... but any combination newer than
this, brings me a high load.

Best regards, and thank you so much for helping me out on this.

Denis.

On Sat, 2002-06-29 at 06:51, Lutz Jaenicke wrote:
 On Fri, Jun 28, 2002 at 11:25:09PM +0200, [EMAIL PROTECTED] wrote:
  I tried with the prngd and exactly the same problem appeared.
 
 I don't think, that your problem has to do with random seeding.
 Even the built-in seeding should not cause significant load increases.
 
 What other modules or add-ons do you use? I know that there is at least
 one interaction between php4 and mod_ssl: child processes do not correctly
 shut down, when both modules are used.
 
 Best regards,
   Lutz
 -- 
 Lutz Jaenicke [EMAIL PROTECTED]
 http://www.aet.TU-Cottbus.DE/personen/jaenicke/
 BTU Cottbus, Allgemeine Elektrotechnik
 Universitaetsplatz 3-4, D-03044 Cottbus
 __
 Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
 User Support Mailing List  [EMAIL PROTECTED]
 Automated List Manager[EMAIL PROTECTED]
 
-- 
Denis A.V.Jr. - [EMAIL PROTECTED]
Systems Engineer - ICQ 2524962
Universo Online

perl -e 'print computers are like air-conditioners: they stop working
when you open windows , pack(c*,hex
3A,sqrt(2025),(unpack(c,=)-20),10);'


__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: Performance Issue

2002-04-04 Thread Denis A.V.Jr.

Definetly, Cliff.

I'll send it to you ASAP.

Thank you.


On Mon, 2002-04-01 at 17:48, Cliff Woolley wrote:
 On Mon, 1 Apr 2002, Alex wrote:
 
  I am experiencing exactly the same issue after upgrade of couple of
  servers in our web-farm from Sol.2.6 to Solaris 8 (running on Sun Enterprise).
  We are using Apache 1.3.9 on Solaris 2.6, Apache 1.3.23/mod_ssl 2.8.7 on
  Solaris 8.
 
  Please, let me know if you find something that explains such a high load
  and a way to eliminate it.
 
 As I mentioned the last time (and never got a response):
 
 To help track this down, can you do a before-and-after run of the
 following:
 
 truss -c
 lockstat -CP sleep 5
 
 and email the outputs of both from the old version and the new version to
 me?
 
 Thanks,
 Cliff
 
 --
Cliff Woolley
[EMAIL PROTECTED]
Apache HTTP Server Project
 
 __
 Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
 User Support Mailing List  [EMAIL PROTECTED]
 Automated List Manager[EMAIL PROTECTED]
 
-- 
Denis A.V.Jr. - [EMAIL PROTECTED]
Systems Engineer - ICQ 2524962
Universo Online

perl -e 'print computers are like air-conditioners: they stop working
when you open windows , pack(c*,hex
3A,sqrt(2025),(unpack(c,=)-20),10);'


__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Performance Issue

2002-03-28 Thread Denis A.V.Jr.

Hey there,

I have a few webservers using apache+mod_ssl in our site.
I have noticed, with the installation of 1.3.2[34] and mod_ssl2.8.[78], 
a significant performance situation. Now I have a very high load
average, which I never had before with older versions of the software
(ex: apache1.3.22+mod_ssl 2.8.6).
The hardware used are all Sun Enterprise with Solaris 2.7. 

I searched through this list and couldn't find anyone with the same
problem no one have those problems also?

Thanks in advance.

-- 
Denis A.V.Jr. - [EMAIL PROTECTED]
Systems Engineer

perl -e 'print computers are like air-conditioners: they stop working
when you open windows , pack(c*,hex
3A,sqrt(2025),(unpack(c,=)-20),10);'


__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: Performance Issue

2002-03-28 Thread Denis A.V.Jr.

I compiled it using...:

export CFLAGS='-DHARD_SERVER_LIMIT=8192'; ./configure  
--with-apache=../apache_1.3.24 --with-ssl=../openssl-0.9.6c 
--disable-rule=DEV_RANDOM --disable-rule=EXPAT --disable-rule=IRIXN32
--disable-rule=IRIXNIS --disable-rule=WANTHSREGEX  --enable-module=most
--enable-module=mmap_static --enable-shared=ssl --enable-shared=max
--prefix=/opt/apache

[]


On Thu, 2002-03-28 at 13:05, Denis A.V.Jr. wrote:
 Hey there,
 
 I have a few webservers using apache+mod_ssl in our site.
 I have noticed, with the installation of 1.3.2[34] and mod_ssl2.8.[78], 
 a significant performance situation. Now I have a very high load
 average, which I never had before with older versions of the software
 (ex: apache1.3.22+mod_ssl 2.8.6).
 The hardware used are all Sun Enterprise with Solaris 2.7. 
 
 I searched through this list and couldn't find anyone with the same
 problem no one have those problems also?
 
 Thanks in advance.
 
 -- 
 Denis A.V.Jr. - [EMAIL PROTECTED]
 Systems Engineer
 
 perl -e 'print computers are like air-conditioners: they stop working
 when you open windows , pack(c*,hex
 3A,sqrt(2025),(unpack(c,=)-20),10);'
 
-- 
Denis A.V.Jr. - [EMAIL PROTECTED]
Systems Engineer - ICQ 2524962
Universo Online

perl -e 'print computers are like air-conditioners: they stop working
when you open windows , pack(c*,hex
3A,sqrt(2025),(unpack(c,=)-20),10);'


__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]