Install the VM image

Install HAProxy Enterprise as a virtual machine in OpenStack

In this guide, you’ll learn how to install HAProxy Enterprise in OpenStack. This tutorial demonstrates the procedure using DevStack; DevStack is the official way to install OpenStack onto a single server.

Set up your OpenStack environment Jump to heading

Create an OpenStack environment for installing HAProxy Enterprise:

  1. Create a Linux virtual server on which to install OpenStack. The DevStack Quick Start recommends using Ubuntu 22.04 (Jammy).

    Sizing recommendation

    The Linux server onto which you’ll install OpenStack should provide enough CPU, memory, and hard drive resources to support running virtual machines. For example, the HAProxy Enterprise virtual machine we’ll create in OpenStack will have 2 CPUs, 4 GB RAM, and a 40 GB hard drive. So, the server hosting OpenStack should have at least twice that much.

  2. Follow the DevStack Quick Start to install the hypervisor software onto your Linux server.

    • Part of the installation is to define the file local.conf:

      local.conf
      ini
      [[local|localrc]]
      ADMIN_PASSWORD=secret
      DATABASE_PASSWORD=$ADMIN_PASSWORD
      RABBIT_PASSWORD=$ADMIN_PASSWORD
      SERVICE_PASSWORD=$ADMIN_PASSWORD
      PUBLIC_INTERFACE=lo
      HOST_IP=0.0.0.0
      local.conf
      ini
      [[local|localrc]]
      ADMIN_PASSWORD=secret
      DATABASE_PASSWORD=$ADMIN_PASSWORD
      RABBIT_PASSWORD=$ADMIN_PASSWORD
      SERVICE_PASSWORD=$ADMIN_PASSWORD
      PUBLIC_INTERFACE=lo
      HOST_IP=0.0.0.0

      Be sure to:

      • Set the network interface to use for assigning floating IP addresses, which you’ll use to access virtual machines. We do that by setting the PUBLIC_INTERFACE field to the loopback interface, lo, to access VMs from the host. As described in the DevStack Networking guide, you can set a different interface to make guest virtual machines accessible on your network, such as eth0.
      • Set the IP address on which to serve the OpenStack user interface. We accept traffic on all bound IP addresses by setting HOST_IP to 0.0.0.0.

    The final step of installing DevStack is to call ./stack.sh, which will start the OpenStack services and make the CLI command openstack available.

Deploy an HAProxy Enterprise VM Jump to heading

In this tutorial, we’ll deploy HAProxy Enterprise by invoking openstack commands from the Linux console. But you could instead perform similar steps through the OpenStack user interface, which listens at port 80.

  1. Connect to your OpenStack server.

  2. To download the HAProxy Enterprise virtual machine image (.qcow2) that you want to install, go the URL below. Replace <HAPROXY ENTERPRISE KEY> with your HAProxy Enterprise license key to access the repository.

    text
    https://www.haproxy.com/download/hapee/key/<HAPROXY ENTERPRISE KEY>-openstack
    text
    https://www.haproxy.com/download/hapee/key/<HAPROXY ENTERPRISE KEY>-openstack

    You can use the command wget <URL of file to download> to download a file.

  3. To upload the .qcow2 virtual machine image to OpenStack, call openstack image create. Replace <image name> with the name of the file you downloaded:

    nix
    openstack image create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    --disk-format qcow2 \
    --container-format bare \
    --public \
    --file ./<image name>.qcow2 \
    haproxy-enterprise
    nix
    openstack image create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    --disk-format qcow2 \
    --container-format bare \
    --public \
    --file ./<image name>.qcow2 \
    haproxy-enterprise
  4. To create a security group, which acts as a firewall for the virtual machine you’ll create, call openstack security group create.

    nix
    openstack security group create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    --description "Load balancer security group" \
    load-balancer-sg
    nix
    openstack security group create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    --description "Load balancer security group" \
    load-balancer-sg
  5. Call openstack security group rule create to add rules to the security group to allow traffic to reach the virtual machine. For example, here we add rules that allow SSH (port 22), HTTP (port 80), and ICMP traffic:

    nix
    openstack security group rule create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name admin \
    --os-project-domain-name default \
    --os-user-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --protocol tcp \
    --dst-port 22 \
    load-balancer-sg
    openstack security group rule create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name admin \
    --os-project-domain-name default \
    --os-user-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --protocol tcp \
    --dst-port 80 \
    load-balancer-sg
    openstack security group rule create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name admin \
    --os-project-domain-name default \
    --os-user-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --protocol icmp \
    --dst-port 0 \
    load-balancer-sg
    nix
    openstack security group rule create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name admin \
    --os-project-domain-name default \
    --os-user-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --protocol tcp \
    --dst-port 22 \
    load-balancer-sg
    openstack security group rule create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name admin \
    --os-project-domain-name default \
    --os-user-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --protocol tcp \
    --dst-port 80 \
    load-balancer-sg
    openstack security group rule create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name admin \
    --os-project-domain-name default \
    --os-user-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --protocol icmp \
    --dst-port 0 \
    load-balancer-sg
  6. Create an SSH key pair that will allow you to connect to the HAProxy Enterprise virtual machine. For example, here we create one for a user named fusion by calling ssh-keygen. The files are saved to your home directory’s .ssh directory.

    nix
    ssh-keygen -t ed25519 -m PEM -C "fusion@example.com"
    chmod 600 ~/.ssh/id_ed25519
    nix
    ssh-keygen -t ed25519 -m PEM -C "fusion@example.com"
    chmod 600 ~/.ssh/id_ed25519
  7. Create a file named cloud-init.yaml that defines users to add to the virtual machine. For example, here we create a user named fusion and set ssh_authorized_keys to the public key we just created, which is saved to ~/.ssh/id_ed25519.pub:

    cloud-init.yaml
    yaml
    #cloud-config
    users:
    - name: fusion
    gecos: Fusion
    primary_group: fusion
    groups: wheel,users,sudo
    sudo: ALL=(ALL) NOPASSWD:ALL
    shell: /bin/bash
    lock_passwd: false
    plain_text_passwd: mypassword
    ssh_authorized_keys:
    - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGbr3mjpystKU/4GQrh6AKggqM20vg9JZaxFJQQYU3m4 fusion@example.com
    cloud-init.yaml
    yaml
    #cloud-config
    users:
    - name: fusion
    gecos: Fusion
    primary_group: fusion
    groups: wheel,users,sudo
    sudo: ALL=(ALL) NOPASSWD:ALL
    shell: /bin/bash
    lock_passwd: false
    plain_text_passwd: mypassword
    ssh_authorized_keys:
    - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGbr3mjpystKU/4GQrh6AKggqM20vg9JZaxFJQQYU3m4 fusion@example.com
  8. You can list available virtual machine flavors, which define an instance’s compute, memory, and storage capacity, by calling openstack flavor list.

    nix
    openstack flavor list \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name default
    nix
    openstack flavor list \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name default
    output
    text
    +----+-----------+-------+------+-----------+-------+-----------+
    | ID | Name | RAM | Disk | Ephemeral | VCPUs | Is Public |
    +----+-----------+-------+------+-----------+-------+-----------+
    | 1 | m1.tiny | 512 | 1 | 0 | 1 | True |
    | 2 | m1.small | 2048 | 20 | 0 | 1 | True |
    | 3 | m1.medium | 4096 | 40 | 0 | 2 | True |
    | 4 | m1.large | 8192 | 80 | 0 | 4 | True |
    | 42 | m1.nano | 192 | 1 | 0 | 1 | True |
    | 5 | m1.xlarge | 16384 | 160 | 0 | 8 | True |
    | 84 | m1.micro | 256 | 1 | 0 | 1 | True |
    | c1 | cirros256 | 256 | 1 | 0 | 1 | True |
    | d1 | ds512M | 512 | 5 | 0 | 1 | True |
    | d2 | ds1G | 1024 | 10 | 0 | 1 | True |
    | d3 | ds2G | 2048 | 10 | 0 | 2 | True |
    | d4 | ds4G | 4096 | 20 | 0 | 4 | True |
    +----+-----------+-------+------+-----------+-------+-----------+
    output
    text
    +----+-----------+-------+------+-----------+-------+-----------+
    | ID | Name | RAM | Disk | Ephemeral | VCPUs | Is Public |
    +----+-----------+-------+------+-----------+-------+-----------+
    | 1 | m1.tiny | 512 | 1 | 0 | 1 | True |
    | 2 | m1.small | 2048 | 20 | 0 | 1 | True |
    | 3 | m1.medium | 4096 | 40 | 0 | 2 | True |
    | 4 | m1.large | 8192 | 80 | 0 | 4 | True |
    | 42 | m1.nano | 192 | 1 | 0 | 1 | True |
    | 5 | m1.xlarge | 16384 | 160 | 0 | 8 | True |
    | 84 | m1.micro | 256 | 1 | 0 | 1 | True |
    | c1 | cirros256 | 256 | 1 | 0 | 1 | True |
    | d1 | ds512M | 512 | 5 | 0 | 1 | True |
    | d2 | ds1G | 1024 | 10 | 0 | 1 | True |
    | d3 | ds2G | 2048 | 10 | 0 | 2 | True |
    | d4 | ds4G | 4096 | 20 | 0 | 4 | True |
    +----+-----------+-------+------+-----------+-------+-----------+
  9. Create the HAProxy Enterprise virtual machine by calling openstack server create. Here, we create an m1.medium machine using the security group, VM image, and cloud-init.yaml file we created previously:

    nix
    openstack server create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    --flavor m1.medium \
    --network private \
    --image haproxy-enterprise \
    --security-group load-balancer-sg \
    --user-data cloud-init.yaml \
    loadbalancer1
    nix
    openstack server create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    --flavor m1.medium \
    --network private \
    --image haproxy-enterprise \
    --security-group load-balancer-sg \
    --user-data cloud-init.yaml \
    loadbalancer1

    This could take several minutes to complete.

  10. To create a floating IP address that will allow you to access the virtual machine from the host server, call openstack floating ip create.

    nix
    openstack floating ip create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    public
    nix
    openstack floating ip create \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    public

    The floating IP address 172.24.4.248 was created:

    output
    text
    +---------------------+--------------------------------------+
    | Field | Value |
    +---------------------+--------------------------------------+
    | created_at | 2025-03-25T21:17:20Z |
    | description | |
    | dns_domain | |
    | dns_name | |
    | fixed_ip_address | None |
    | floating_ip_address | 172.24.4.248 |
    | floating_network_id | 5bb7d124-0227-4ea6-bede-2d276911b53b |
    | id | bc0557c7-3123-44d2-bcdb-e6b351171fe8 |
    | name | 172.24.4.248 |
    | port_details | None |
    | port_id | None |
    | project_id | 4a36ab79893548a6a424e8daf92f5d8b |
    | qos_policy_id | None |
    | revision_number | 0 |
    | router_id | None |
    | status | DOWN |
    | subnet_id | None |
    | tags | [] |
    | updated_at | 2025-03-25T21:17:20Z |
    output
    text
    +---------------------+--------------------------------------+
    | Field | Value |
    +---------------------+--------------------------------------+
    | created_at | 2025-03-25T21:17:20Z |
    | description | |
    | dns_domain | |
    | dns_name | |
    | fixed_ip_address | None |
    | floating_ip_address | 172.24.4.248 |
    | floating_network_id | 5bb7d124-0227-4ea6-bede-2d276911b53b |
    | id | bc0557c7-3123-44d2-bcdb-e6b351171fe8 |
    | name | 172.24.4.248 |
    | port_details | None |
    | port_id | None |
    | project_id | 4a36ab79893548a6a424e8daf92f5d8b |
    | qos_policy_id | None |
    | revision_number | 0 |
    | router_id | None |
    | status | DOWN |
    | subnet_id | None |
    | tags | [] |
    | updated_at | 2025-03-25T21:17:20Z |
  11. Assign the floating IP address to the virtual machine:

    nix
    openstack server add floating ip \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    loadbalancer1 \
    172.24.4.248
    nix
    openstack server add floating ip \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default \
    loadbalancer1 \
    172.24.4.248
  12. At this point, your HAProxy Enterprise virtual machine should be running. To check, run openstack server list.

    nix
    openstack server list \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default
    nix
    openstack server list \
    --os-auth-url "http://localhost/identity" \
    --os-project-name demo \
    --os-project-domain-name Default \
    --os-auth-type=v3password \
    --os-username admin \
    --os-password secret \
    --os-user-domain-name Default
    output
    text
    +-------------+---------------+--------+---------------------------------+--------------------+-----------+
    | ID | Name | Status | Networks | Image | Flavor |
    +-------------+---------------+--------+---------------------------------+--------------------+-----------+
    | 2eff8628... | loadbalancer1 | ACTIVE | private=10.0.0.19, 172.24.4.248 | haproxy-enterprise | m1.medium |
    +-------------+---------------+--------+---------------------------------+--------------------+-----------+
    output
    text
    +-------------+---------------+--------+---------------------------------+--------------------+-----------+
    | ID | Name | Status | Networks | Image | Flavor |
    +-------------+---------------+--------+---------------------------------+--------------------+-----------+
    | 2eff8628... | loadbalancer1 | ACTIVE | private=10.0.0.19, 172.24.4.248 | haproxy-enterprise | m1.medium |
    +-------------+---------------+--------+---------------------------------+--------------------+-----------+

    From the OpenStack server, make an SSH connection to it:

    nix
    ssh -i ~/.ssh/id_ed25519 fusion@172.24.4.248
    nix
    ssh -i ~/.ssh/id_ed25519 fusion@172.24.4.248
    output
    text
    The authenticity of host '172.24.4.248 (172.24.4.248)' can't be established.
    ED25519 key fingerprint is SHA256:zLCERG3GGz6iXS3ngrRmHZhYxuza1yz09GeM+Kg9vnA.
    This key is not known by any other names
    Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
    Warning: Permanently added '172.24.4.248' (ED25519) to the list of known hosts.
    Welcome to Ubuntu 22.04.5 LTS (GNU/Linux 6.8.0-52-generic x86_64)
    * Documentation: https://help.ubuntu.com
    * Management: https://landscape.canonical.com
    * Support: https://ubuntu.com/pro
    System information as of Wed Mar 5 07:49:59 UTC 2025
    System load: 0.400390625 Processes: 104
    Usage of /: 7.0% of 19.20GB Users logged in: 0
    Memory usage: 2% IPv4 address for ens3: 192.168.222.194
    Swap usage: 0%
    output
    text
    The authenticity of host '172.24.4.248 (172.24.4.248)' can't be established.
    ED25519 key fingerprint is SHA256:zLCERG3GGz6iXS3ngrRmHZhYxuza1yz09GeM+Kg9vnA.
    This key is not known by any other names
    Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
    Warning: Permanently added '172.24.4.248' (ED25519) to the list of known hosts.
    Welcome to Ubuntu 22.04.5 LTS (GNU/Linux 6.8.0-52-generic x86_64)
    * Documentation: https://help.ubuntu.com
    * Management: https://landscape.canonical.com
    * Support: https://ubuntu.com/pro
    System information as of Wed Mar 5 07:49:59 UTC 2025
    System load: 0.400390625 Processes: 104
    Usage of /: 7.0% of 19.20GB Users logged in: 0
    Memory usage: 2% IPv4 address for ens3: 192.168.222.194
    Swap usage: 0%
  13. If you’re using HAProxy Fusion, next add the HAProxy Enterprise instance as a Fusion node.

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