Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie - help need with load balancer module

Status
Not open for further replies.

mickscool80

Programmer
Joined
Jul 18, 2006
Messages
1
Location
CA
Hi Friends,
I really need some help. I am trying to learn load balancing in apache 2.2.2 on win 2000,but I get this error message:

Code:
Invalid command 'BalancerMember', perhaps mis-spelled or defined by a module not included in the server configuration


I researched and came to know,I need to have this module uncommented,but I cannot see anything like this in my httpd.conf file:

Code:
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
If I type it there,then I get this error message:


Code:
Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_proxy_balancer.so
into server: The specified module could not be found.

Here's my httpd.conf file part:

Code:
NameVirtualHost *
<VirtualHost *>

ProxyRequests Off
ProxyPass /test balancer://cluster
ProxyPassReverse /test balancer://cluster

<Proxy balancer://cluster>
BalancerMember BalancerMember </Proxy>

# ErrorLog C:/apache.log
</VirtualHost>

So,can somebody please tell me how I can install that module??Any help would be appreciated.
Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top