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

--- Comment #9 from [email protected] ---

The patch from Christophe does not make any changes in my case. It crashes
every time when not using the pach from Yann (Comment 3)
I think that issue from Comment 6 is not related to this.

But, now figured out my "random cases" from Comment 5: 
All BalancerMember that are active at initial startup can be removed and
re-added at runtime. But adding completely new BalancerMember causes the
AH01186. 

Here one example (I used the patch from Yann for this):

Initail config:
<Proxy balancer://lb2>
  BalancerMember http://servera:8080
  BalancerMember http://serverb:8080
  #BalancerMember http://serverc:8080
</Proxy>

Now start Apache (Initial start, not restart)

Now remove "serverb":
<Proxy balancer://lb2>
  BalancerMember http://servera:8080
  #BalancerMember http://serverb:8080
  #BalancerMember http://serverc:8080
</Proxy>

Now restart Apache ==> OK

Now remove "servera" and re-add "serverb":
<Proxy balancer://lb2>
  #BalancerMember http://servera:8080
  BalancerMember http://serverb:8080
  #BalancerMember http://serverc:8080
</Proxy>

Now restart Apache ==> OK

Now add "serverc" (which was never active since initial start)
<Proxy balancer://lb2>
  #BalancerMember http://servera:8080
  BalancerMember http://serverb:8080
  BalancerMember http://serverc:8080
</Proxy>

Restart Apache ==> ERROR AH01186

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to