https://bz.apache.org/bugzilla/show_bug.cgi?id=62044

--- Comment #38 from Dasharath Masirkar <masirk...@gmail.com> ---
We can use following steps to reproduce the issue.

step1: Create a configuration files using a script like as follows, I have
tried on Linux.

~~~
#!/bin/bash

### create 700 vhost ###########
for i in {1..700..1}
  do

echo "<VirtualHost *:80>" >>vhost.conf
echo "ServerName app$i.example.com">>vhost.conf
echo "ProxyPass /myapp$i balancer://lb$i/myapp$i">>vhost.conf
echo "ProxyPassReverse /myapp$i balancer://lb$i/myapp$i">>vhost.conf
echo "</VirtualHost>">>vhost.conf

  done

echo "700 vhost created in vhost.conf file"

## create 200 proxy balancer #########
for i in {1..200..1}
  do

echo "<Proxy balancer://lb$i>" >>balancer.conf
echo "BalancerMember http://backend$i.example.com:808$i"; >>balancer.conf
echo "BalancerMember http://backend$i.example.com:818$i"; >>balancer.conf
echo "Proxyset lbmethod=byrequests" >>balancer.conf
echo "</Proxy>" >>balancer.conf

  done
echo "200 balancer created in balancer.conf file"
~~~

step2: Copy vhost.conf and balancer.conf to Apache httpd configuration
directory or add Include to httpd.conf file.

step3: start the httpd

Observation:
 The httpd will fail in a startup with the following error:

[Fri Aug 21 17:53:07.825499 2020] [proxy_balancer:emerg] [pid 581:tid
140381045221504] (28)No space left on device: AH01185: worker slotmem_create
failed
[Fri Aug 21 17:53:07.825510 2020] [:emerg] [pid 581:tid 140381045221504]
AH00020: Configuration Failed, exiting

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org

Reply via email to