Eugen Leitl | 10 Dec 18:53

web server performance shootout


	http://blog.davber.com/2007/12/10/web-server-performance-shoot-out-simple-pages/

--

-- 
Eugen* Leitl <a href="http://leitl.org">leitl</a> http://leitl.org
______________________________________________________________
ICBM: 48.07100, 11.36820 http://www.ativel.com http://postbiota.org
8B29F6BE: 099D 78BA 2FD3 B014 B08A  7779 75B0 2443 8B29 F6BE

Kevin Worthington | 10 Dec 19:21

Re: web server performance shootout

On Dec 10, 2007 12:56 PM, Eugen Leitl <eugen <at> leitl.org> wrote:
>
>         http://blog.davber.com/2007/12/10/web-server-performance-shoot-out-simple-pages/
>
> --
> Eugen* Leitl <a href="http://leitl.org">leitl</a> http://leitl.org
> ______________________________________________________________
> ICBM: 48.07100, 11.36820 http://www.ativel.com http://postbiota.org
> 8B29F6BE: 099D 78BA 2FD3 B014 B08A  7779 75B0 2443 8B29 F6BE
>
>
Eugen,

Why didn't you do a test of dynamic pages/second on lighttpd?

Also, running ab (Apache bench) from the server you want to test is
really inaccurate since the processor has to work harder to serve the
pages and run the test.

Can you re-test with ab from another system? (and possibly include
dynamic pages on lighttpd?)

Regards,
Kevin
--

-- 
Kevin Worthington

Andrzej Rumpfelt | 10 Dec 19:37

server.errorlog setting

Hi,

I have a lighttpd  1.4.18 running with couple hosts defined, basically like 
this (I'm pasting only lines relevant to the problem):

$HTTP["host"] =~ "domain1\.com" {
        server.document-root        = "/var/www/html/domain1.com"
        server.errorlog             = "/var/log/lighttpd/domain1_error_log"
        accesslog.filename          = "/var/log/lighttpd/domain1_access_log"
    .....
}
$HTTP["host"] =~ "domain2\.com" {
        server.document-root        = "/var/www/html/domain2.com"
        server.errorlog             = "/var/log/lighttpd/domain2_error_log"
        accesslog.filename          = "/var/log/lighttpd/domain2_access_log"
    .......
}

Everything works fine except error logs which all get into the last 
specified host-errorlog. In the above case all of my errors go into 
domain2_error_log, if I would add domain3 in the end it would go into 
domain3_error_log, at least this comes to mind after trying different 
settings.. this is really strange, all the other stuff is working perfectly.

Any ideas ?

Thanks,
--
Andrzej Rumpfelt
arumpfelt <at> gmail.com 
(Continue reading)

Christian Hoffmann | 10 Dec 19:43

Re: server.errorlog setting

On 2007-12-10 19:37, Andrzej Rumpfelt wrote:
> Hi,
First, please do not hijack other peoples' threads (you are replying to
a totally unrelated mail).

> I have a lighttpd  1.4.18 running with couple hosts defined, basically
> like this (I'm pasting only lines relevant to the problem):
> 
> $HTTP["host"] =~ "domain1\.com" {
>        server.document-root        = "/var/www/html/domain1.com"
>        server.errorlog             = "/var/log/lighttpd/domain1_error_log"
>        accesslog.filename          = "/var/log/lighttpd/domain1_access_log"
>    .....
> }
> $HTTP["host"] =~ "domain2\.com" {
>        server.document-root        = "/var/www/html/domain2.com"
>        server.errorlog             = "/var/log/lighttpd/domain2_error_log"
>        accesslog.filename          = "/var/log/lighttpd/domain2_access_log"
>    .......
> }
> 
> 
> Everything works fine except error logs which all get into the last
> specified host-errorlog. In the above case all of my errors go into
> domain2_error_log, if I would add domain3 in the end it would go into
> domain3_error_log, at least this comes to mind after trying different
> settings.. this is really strange, all the other stuff is working
> perfectly.
> 
> Any ideas ?
(Continue reading)

Andrzej Rumpfelt | 10 Dec 19:49

Re: server.errorlog setting

Thanks Christian,

I thought I was doing something wrong..

--
Andrzej Rumpfelt
arumpfelt <at> gmail.com

On 2007-12-10 19:37, Andrzej Rumpfelt wrote:
> Hi,
First, please do not hijack other peoples' threads (you are replying to
a totally unrelated mail).

> I have a lighttpd  1.4.18 running with couple hosts defined, basically
> like this (I'm pasting only lines relevant to the problem):
>
> $HTTP["host"] =~ "domain1\.com" {
>        server.document-root        = "/var/www/html/domain1.com"
>        server.errorlog             = "/var/log/lighttpd/domain1_error_log"
>        accesslog.filename          = 
> "/var/log/lighttpd/domain1_access_log"
>    .....
> }
> $HTTP["host"] =~ "domain2\.com" {
>        server.document-root        = "/var/www/html/domain2.com"
>        server.errorlog             = "/var/log/lighttpd/domain2_error_log"
>        accesslog.filename          = 
> "/var/log/lighttpd/domain2_access_log"
>    .......
> }
(Continue reading)

Jose Celestino | 10 Dec 19:43

Re: server.errorlog setting

Words by Andrzej Rumpfelt [Mon, Dec 10, 2007 at 07:37:01PM +0100]:
> Hi,
>
> I have a lighttpd  1.4.18 running with couple hosts defined, basically like 
> this (I'm pasting only lines relevant to the problem):
>
> $HTTP["host"] =~ "domain1\.com" {
>        server.document-root        = "/var/www/html/domain1.com"
>        server.errorlog             = "/var/log/lighttpd/domain1_error_log"
>        accesslog.filename          = "/var/log/lighttpd/domain1_access_log"
>    .....
> }
> $HTTP["host"] =~ "domain2\.com" {
>        server.document-root        = "/var/www/html/domain2.com"
>        server.errorlog             = "/var/log/lighttpd/domain2_error_log"
>        accesslog.filename          = "/var/log/lighttpd/domain2_access_log"
>    .......
> }
>
>
> Everything works fine except error logs which all get into the last 
> specified host-errorlog. In the above case all of my errors go into 
> domain2_error_log, if I would add domain3 in the end it would go into 
> domain3_error_log, at least this comes to mind after trying different 
> settings.. this is really strange, all the other stuff is working perfectly.
>

Try with:

} else $HTTP["host"] =~
(Continue reading)


Gmane