To configure and install HAProxy, the server administrator account must have superuser privileges.
We do not recommend installing the HAProxy load balancer on the same server as the application because HAProxy and Kaspersky Web Traffic Security use the same port (1344) for interaction with other LAN servers.
To install and configure HAProxy:
yum install haproxy
zypper install haproxy
apt-get install haproxy
   frontend ICAP
    bind 0.0.0.0:1344
    mode tcp
    default_backend icap_pool
   backend icap_pool
    balance <balancing scheme, roundrobin is recommended>
    mode tcp
    server <name of ICAP server 1> <IP address of cluster node>:<ICAP server port> check
    server <name of ICAP server 2> <IP address of cluster node>:<ICAP server port> check
    server <name of ICAP server 3> <IP address of cluster node>:<ICAP server port> check
service haproxy restart
The HAProxy load balancer will be configured.
Page top