Installation
Install HAProxy Enterprise on Docker
Using HAProxy Fusion?
If you’re using HAProxy Fusion, then see the HAProxy Fusion - Nodes topic instead.
The HAProxy Enterprise Docker image lets you run the load balancer as a container.
Install the HAProxy Enterprise Docker container Jump to heading
The haproxy-enterprise Docker image hosts HAProxy Enterprise and the HAProxy Data Plane API. Follow these steps to install it:
-
Log into the hapee-registry.haproxy.com Docker registry using your HAProxy Enterprise license key as both the username and password. If you do not have a key, get one by registering and requesting a free trial of HAProxy Enterprise at https://www.haproxy.com/downloads/hapee-trial/.
nixsudo docker login https://hapee-registry.haproxy.comnixsudo docker login https://hapee-registry.haproxy.com -
Pull the HAProxy Enterprise image.
nixsudo docker pull hapee-registry.haproxy.com/haproxy-enterprise:3.0r1nixsudo docker pull hapee-registry.haproxy.com/haproxy-enterprise:3.0r1 -
Create an HAProxy Enterprise configuration file (i.e.
hapee-lb.cfg
) that defines your load balancer settings.You can run a container temporarily, just to get the HAProxy Enterprise configuration file from it to use as a starting point.
nixsudo docker run --rm -d --name hapee hapee-registry.haproxy.com/haproxy-enterprise:3.0r1sudo docker cp hapee:/etc/hapee-3.0 ./sudo docker stop hapeecd hapee-3.0nixsudo docker run --rm -d --name hapee hapee-registry.haproxy.com/haproxy-enterprise:3.0r1sudo docker cp hapee:/etc/hapee-3.0 ./sudo docker stop hapeecd hapee-3.0 -
Start the Docker container, referencing the directory containing your configuration file as a volume by using the
-v
flag.nixsudo docker run \--name hapee-3.0 \-d \-p 80:80 \-p 443:443 \-p 5555:5555 \-v $(pwd):/etc/hapee-3.0 \--restart=unless-stopped \hapee-registry.haproxy.com/haproxy-enterprise:3.0r1nixsudo docker run \--name hapee-3.0 \-d \-p 80:80 \-p 443:443 \-p 5555:5555 \-v $(pwd):/etc/hapee-3.0 \--restart=unless-stopped \hapee-registry.haproxy.com/haproxy-enterprise:3.0r1
Access the Data Plane API Jump to heading
The Data Plane API listens at port 5555. However, you must retrieve the Basic authentication credentials to access it.
-
Use the following command to read the username and password from the Data Plane API configuration file:
nixsudo docker exec -it hapee-3.0 grep user: -A3 /etc/hapee-extras/dataplaneapi.ymlnixsudo docker exec -it hapee-3.0 grep user: -A3 /etc/hapee-extras/dataplaneapi.ymloutputyamluser:- insecure: truepassword: v7xkLr4Z4Qlcname: adminoutputyamluser:- insecure: truepassword: v7xkLr4Z4Qlcname: adminThen you can verify that the API is working by calling the
info
function. In the example below, we use the username and password that we retrieved during the last step:nixcurl -X GET --user admin:v7xkLr4Z4Qlc http://localhost:5555/v2/infonixcurl -X GET --user admin:v7xkLr4Z4Qlc http://localhost:5555/v2/infooutputjson{"api":{"build_date":"2021-06-01T21:18:15.000Z","version":"v2.3.2-ee2 8fdcfba"},"system":{}}outputjson{"api":{"build_date":"2021-06-01T21:18:15.000Z","version":"v2.3.2-ee2 8fdcfba"},"system":{}}
Reload the services Jump to heading
When you change your hapee-lb.cfg
configuration file, you will need to reload the service for the changes to take effect. We use s6-overlay to run HAProxy Enterprise and the HAProxy Data Plane API as services.
-
Make sure that the following line is included in the
global
section of your HAProxy Enterprise configuration file. It ensures that you can perform a hitless reload, which means no traffic is dropped.haproxyglobalstats socket /var/run/hapee-3.0/hapee-lb.sock user hapee-lb group hapee mode 660 level admin expose-fd listenershaproxyglobalstats socket /var/run/hapee-3.0/hapee-lb.sock user hapee-lb group hapee mode 660 level admin expose-fd listeners -
Reload the HAProxy Enterprise process with this command:
nixsudo docker exec hapee-3.0 s6-svc -2 /var/run/s6/services/haproxynixsudo docker exec hapee-3.0 s6-svc -2 /var/run/s6/services/haproxyYou can also perform a hard restart by using this command:
nixdocker exec hapee-3.0 s6-svc -t /var/run/s6/services/haproxynixdocker exec hapee-3.0 s6-svc -t /var/run/s6/services/haproxyTo restart the Data Plane API, use this command:
nixsudo docker exec hapee-3.0 s6-svc -t /var/run/s6/services/dataplaneapinixsudo docker exec hapee-3.0 s6-svc -t /var/run/s6/services/dataplaneapi
Installing with a custom Docker file Jump to heading
To install a modified HAProxy Enterprise environment, create a custom Docker file. Specify the desired HAProxy Enterprise base image as in the following example, which specifies version 3.0r1:
docker
FROM hapee-registry.haproxy.com/haproxy-enterprise:3.0r1
docker
FROM hapee-registry.haproxy.com/haproxy-enterprise:3.0r1
Then add any further Dockerfile commands as needed.
The following example Dockerfile builds a HAProxy Enterprise version 3.0r1 image that includes a custom set of tools. The custom tool installation script, install_mytools-4.3.sh
, must reside in the current directory.
docker
FROM hapee-registry.haproxy.com/haproxy-enterprise:3.0r1# install internal toolsWORKDIR /tmpARG mytools_version="4.3"COPY install_mytools-"$mytools_version".sh .RUN /tmp/install_mytools-"$mytools_version".sh
docker
FROM hapee-registry.haproxy.com/haproxy-enterprise:3.0r1# install internal toolsWORKDIR /tmpARG mytools_version="4.3"COPY install_mytools-"$mytools_version".sh .RUN /tmp/install_mytools-"$mytools_version".sh
Do you have any suggestions on how we can improve the content of this page?