Administration

Manage HAProxy Enterprise configuration files

By default, the HAProxy Enterprise service loads only one configuration file, /etc/hapee-<VERSION>/hapee-lb.cfg.

Optional: Split the load balancer configuration file Jump to heading

You can split the load balancer configuration file into multiple files and then load them all. This type of configuration is typically used for load balancers that support multiple applications.

In this configuration the default configuration file contains the global directives shared by all applications, and the defaults, frontend, and backend sections for each application are contained in their own configuration file. Thus, for example, if there are two applications, there would be one file for global directives, a second file containing the defaults, frontend, and backend sections for application A, and a third file containing the defaults, frontend, and backend sections for application B.

Info

Be aware that if you use the Data Plane API to make configuration changes, the API is not compatible with split configuration files and expects there to be only one.

To split the load balancer configuration:

  1. Create the directory /etc/hapee-<VERSION>/lb-conf.d.

  2. In the lb-conf.d directory, create a configuration file for one application, for example, app-A.cfg.

  3. Move the application A sections from the main configuration file, /etc/hapee-<VERSION>/hapee-lb.cfg, to the application A configuration file /etc/hapee-<VERSION>/lb-conf.d/app-A.cfg.

  4. Repeat this process for the remaining applications.

    Do not split configuration sections

    • A configuration section (such as global, defaults, and so on) must be completely contained in a single file and cannot be split across multiple files.

    Configuration file order and names

    • Configuration files must have the suffix .cfg.
  5. Edit the service environment file:

    • On Debian/Ubuntu, /etc/default/hapee-2.8-lb
    • On Alma/Oracle/Redhat/Rocky, /etc/sysconfig/hapee-2.8-lb

    Change the OPTIONS line so that it contains the following -f argument, which loads the files in the lb-conf.d directory when the HAProxy Enterprise service starts:

    hapee-VERSION-lb
    text
    OPTIONS="-f /etc/hapee-2.8/lb-conf.d/"
    hapee-VERSION-lb
    text
    OPTIONS="-f /etc/hapee-2.8/lb-conf.d/"
  6. Restart the service:

    nix
    sudo systemctl restart hapee-2.8-lb
    nix
    sudo systemctl restart hapee-2.8-lb

With this configuration, when the load balancer starts, it first loads the default file containing the global section. Then it loads the files in the lb-conf.d directory in lexical sort order.

Validating the configuration Jump to heading

  1. Use the hapee-lb program’s -c flag to validate the configuration files.

    nix
    sudo /opt/hapee-2.8/sbin/hapee-lb -c -f /etc/hapee-2.8/hapee-lb.cfg -f /etc/hapee-2.8/lb-conf.d/
    nix
    sudo /opt/hapee-2.8/sbin/hapee-lb -c -f /etc/hapee-2.8/hapee-lb.cfg -f /etc/hapee-2.8/lb-conf.d/
    output
    text
    Configuration file is valid
    output
    text
    Configuration file is valid

Do you have any suggestions on how we can improve the content of this page?