search for: maxclients

Displaying 20 results from an estimated 38 matches for "maxclients".

2007 Nov 09
4
variables in templates
Here''s the problem I''m trying to solve. I use apache, for lots of things, some of those things are configured from a performance standpoint differently. In less vague terms I need to be able to change the MaxClients setting to different things based on the different purposes apache serves. (say proxy vs. app) Under previous CMS/templating engines I would have a httpd.conf that was applicable for both cases and then I would variablize MaxClients and set the appropriate value for the proxy vs the app. I was...
2010 Jul 13
2
Setting apache's maxclients higher than 256 in CentOS
Hi, I could not find any reference if the version of apache compiled for centos 5.x has support for more than 256 clients in apache's maxclients. If that is not the case how can I recompile the package with such support? Regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20100712/bb770d67/attachment.html>
2009 Jan 20
6
Apache Server Tuning for Performance
...50 ## Server-Pool Size Regulation (MPM specific) # prefork MPM # StartServers: number of server processes to start # MinSpareServers: minimum number of server processes which are kept spare # MaxSpareServers: maximum number of server processes which are kept spare # ServerLimit: maximum value for MaxClients for the lifetime of the server # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 251 MaxClients...
2011 Dec 02
12
puppet master under passenger locks up completely
...7 seconds There are no other messages in /var/log/messages -- the system was otherwise not busy. Apache error log only observed max clients get hit: [Fri Dec 02 08:42:43 2011] [notice] Apache/2.2.3 (CentOS) configured -- resuming normal operations [Fri Dec 02 12:23:46 2011] [error] server reached MaxClients setting, consider raising the MaxClients setting [Fri Dec 02 18:06:07 2011] [notice] caught SIGTERM, shutting down [Fri Dec 02 18:06:08 2011] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) [Fri Dec 02 18:06:08 2011] [warn] RSA server certificate CommonName (CN) `puppetmaster.company....
2009 Dec 22
2
Webserver throughput in xen-environment
Hi   I am running a web server in one of my xen guests. Using ab as a load generating tool i have collected some throughput data for different file sizes like 5KB, 10KB and 100KB. One thing that i have noticed strange here is throughput drops down in a virtual http server, it happends in case of 5KB and 10KB files. Also it takes longer to run tests in virtual environment. Doc Size
2009 Dec 22
2
Webserver throughput in xen-environment
Hi   I am running a web server in one of my xen guests. Using ab as a load generating tool i have collected some throughput data for different file sizes like 5KB, 10KB and 100KB. One thing that i have noticed strange here is throughput drops down in a virtual http server, it happends in case of 5KB and 10KB files. Also it takes longer to run tests in virtual environment. Doc Size
2006 Mar 16
10
Substruct Open Source E-Commerce Platform
Finally it''s here :) The Rails app to do battle with the likes of Miva Merchant and OS Commerce! I''m releasing Substruct 0.051 into the wild. More information here: http://dev.subimage.com/projects/substruct Please check it out! I''d love to hear all of your thoughts - and I''m looking for contributors! -- seth at subimage interactive
2005 Apr 17
0
Listener count in stream title
...------- #!/usr/bin/perl -w # tristan+perl@ethereal.net 17apr2005 # public domain use strict; use URI::Escape; use LWP::UserAgent; my $mounts = '/.*'; my $user = 'source'; my $pass = 'changeme'; my $host = 'localhost:8000'; my $realm = 'Icecast2 Server'; my $maxclients = 100; my $ua = LWP::UserAgent->new; $ua->timeout(10); #$ua->env_proxy; my $res = $ua->get("http://$host/status2.xsl"); die $res->status_line unless $res->is_success; my $content = $res->content; $content =~ s|.*<pre>(.*)</pre>|$1|s; foreach my $line (...
2010 Dec 12
1
VMs died due to hanging httpd processes
...ess_cpu_timer+0xc7/0xd2 [<ffffffff80227caa>] do_filp_open+0x1c/0x38 [<ffffffff8021a364>] do_sys_open+0x44/0xbe [<ffffffff802602f9>] tracesys+0xab/0xb6 Monitoring show that in a timeframe of about 3 minutes the load on the systems shot up to over 400 before they died. Since MaxClients is set to 512 I suspect that the processes had a mass-lockup with each process constantly causing a load of 1 (similar to what happens when a process hangs on an NFS mount point). One of the two VMs acts as a NFS server and exports directories to the other VM (but doesn't mount any external...
2015 May 07
2
Apache 2.2 itk - 404 not found
...rverTokens Prod ServerRoot "/etc/httpd" PidFile run/httpd.pid Timeout 60 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 </IfModule> <IfModule worker.c> StartServers 4 MaxClients 300 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 </IfModule> Listen 80 LoadM...
2015 May 07
3
Apache 2.2 itk - 404 not found
...Timeout 60 >> KeepAlive On >> MaxKeepAliveRequests 100 >> KeepAliveTimeout 15 >> <IfModule prefork.c> >> StartServers 8 >> MinSpareServers 5 >> MaxSpareServers 20 >> ServerLimit 256 >> MaxClients 256 >> MaxRequestsPerChild 4000 >> </IfModule> >> <IfModule worker.c> >> StartServers 4 >> MaxClients 300 >> MinSpareThreads 25 >> MaxSpareThreads 75 >> ThreadsPerChild 25...
2007 Oct 02
10
End of file and other errors: solution
For anyone that has experienced the odd End of file or Cannot describe errors, we''ve found that switching to Mongrel has fixed this problem for us. We''re currently running 5 instance of puppetmaster under mongrel (with the apache proxy in front) and things are going great. For more information on setting up Mongrel, visit:
2014 May 23
3
Icecast2, ezstream and reverse proxy
Hello, Correct me if I'm wrong, but what you get from Icecast *is* HTTP. Anyway, we use proxying because on our server, some of our clients cannot connect to port 8000 without bypassing their company firewall, and we don't have the possibility to add another public IP. So with Apache, here is what we do : ######################################################################## # #
2014 May 23
1
Icecast2, ezstream and reverse proxy
...bind to port 80. > >> and we don't have the possibility to add another public IP. > > That sucks, but is not an Icecast problem, dirty workarounds ensue. > >> So with >> Apache, here is what we do : > <snip /> > Make sure you have a _high_ number of MaxClients or your Apache will > throw a fit after the first few listeners connect and not serve your > websites anymore. > Also Apache is not that great at handling many long-lived connections. > If you really know how to set up an high performance reverse proxy, you > won't have to ask ho...
2015 May 07
0
Apache 2.2 itk - 404 not found
...tpd" > PidFile run/httpd.pid > Timeout 60 > KeepAlive On > MaxKeepAliveRequests 100 > KeepAliveTimeout 15 > <IfModule prefork.c> > StartServers 8 > MinSpareServers 5 > MaxSpareServers 20 > ServerLimit 256 > MaxClients 256 > MaxRequestsPerChild 4000 > </IfModule> > <IfModule worker.c> > StartServers 4 > MaxClients 300 > MinSpareThreads 25 > MaxSpareThreads 75 > ThreadsPerChild 25 > MaxRequestsPerChild 0 > &...
2006 Jul 28
0
Apache/Mongrel Deployment Errors
...# Server-Pool Size Regulation (MPM specific) ## # prefork MPM # StartServers: number of server processes to start # MinSpareServers: minimum number of server processes which are kept spare # MaxSpareServers: maximum number of server processes which are kept spare # ServerLimit: maximum value for MaxClients for the lifetime of the server # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 256 MaxClients...
2006 Jan 05
2
Apache issue
...## Server-Pool Size Regulation (MPM specific) ## # prefork MPM # StartServers: number of server processes to start # MinSpareServers: minimum number of server processes which are kept spare # MaxSpareServers: maximum number of server processes which are kept spare # ServerLimit: maximum value for MaxClients for the lifetime of the server # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves <IfModule prefork.c> MinSpareServers 1 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 </IfModule&gt...
2004 Jan 26
0
intermittent problem printing - cups+samba+ldap
...as far as which goes first. Googling on 'STATUS_OBJECT_NAME_NOT_FOUND' brings up some (apparently) unrelated hits. Environment: currently patched Win2k/sp4 clients. The server has: cups-1.1.14-15.4 samba-2.2.8a openldap-2.0.27-2.7.3 Cups is configured to allow MaxJobs 500 Increasing MaxClients from 500 to 800 did not clear the problem. This was all working a few weeks ago. Restarting the samba, cups, and ldap doesn't clear the problem. Reindexed ldap directory, without fixing the problem. The server is not heavily burdened, and there is plenty of free disk space. The server mana...
2007 May 13
0
cups error 426 when accessing admin functions
.../cups ServerRoot /etc/cups ServerTokens ProductOnly ServerCertificate /etc/cups/ssl/server.crt ServerKey /etc/cups/ssl/server.key User lp Group sys RIPCache 8m TempDir /var/spool/cups/tmp FilterLimit 0 Listen 127.0.0.1:631 Listen 192.168.0.4:631 HostNameLookups Off KeepAlive On KeepAliveTimeout 300 MaxClients 100 MaxClientsPerHost 0 MaxRequestSize 0 Timeout 300 Browsing Off BrowseProtocols cups BrowseAddress 192.168.0.255 BrowseShortNames Yes BrowseAllow from @LOCAL BrowseInterval 30 BrowseOrder allow,deny SystemGroup root <Location /> Order Deny,Allow Deny From All Allow From 127.0.0.1 Allow From...
2018 Oct 15
0
[ANNOUNCE] xorg-server 1.20.2
Lots of bugfixes all over the map. Thanks to all for testing and patches! Adam Jackson (8): modesetting: Lie less in the man page modesetting: Document Option "DoubleShadow" in the man page xfree86: Fix Option "MaxClients" validation modesetting: Don't free(dst) in drmmode_prop_info_copy glamor_egl: Don't initialize on llvmpipe glamor/egl: Avoid crashing on broken configurations fbdevhw: Refuse to touch PCI devices on the fallback probe path xserver 1.20.2 Alex Goins (1):...