09-08-2008 03:48 AM
I have a client that is looking for a load balancer either CSS or ACE. He wants to run his webservers on 8080 for http and 8081 for https, however he wants his users to be able to just go to the url using http or https. I am pretty sure the CSS can do this, I cannot find documentation that shows this.
09-08-2008 09:27 AM
Thats Do-able on any platform CSS/CSM/ACE
In any case you need to define VIP listen on port 80 and then translate the requests to port 8080.
CSS Config example would be
content WEB-DBCONT
vip address 172.1.1.1
protocol tcp
port 80 ------ VIP Listening on port 80
add service APP1-SRVR1
add service APP1-SRVR2
active
service APP1-SRVR1
ip address 10.10.10.1
port 8080 ---- CSS translating request port to 8080
keepalive type http
keepalive port 8080
keepalive frequency 15
active
service APP1-SRVR2
ip address 10.10.10.2
port 8080 ---- CSS translating request port to 8080
keepalive port 8080
keepalive type http
keepalive frequency 15
active
HTH
Syed
09-08-2008 09:30 AM
I thought that was the way to do it. I just couldn't find an example. Thanks very very much!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide