...
This document describes how to install HAProxy after the upgrade from 3.10.x to 4.0.x.
Author: Marc Cirauqui
Install HAProxy on the UI Server
Before you begin: check that you have the epel-release package installed. Otherwise HAProxy might not be available or it might be an old version.
...
If you have multiple datacenters and are running websockify on each Remote Services server, you will need to define the backend for each server. Use Configure the UI server with the following model for the /etc/haproxy/haproxy.cfg file and make the changes described below.
...
Code Block |
---|
# grep datacenter.id /opt/abiquo/config/abiquo.properties
abiquo.datacenter.id = ss008063
## With openssl toolkit
# echo -n ss008063 | openssl dgst -sha1 | cut -f2 -d' '
2af9eaa6f48878b7952cbca17bc3d784b642d2ac
## With ruby
# ruby -e 'require "digest/sha1"; puts Digest::SHA1.hexdigest "ss008063"'
2af9eaa6f48878b7952cbca17bc3d784b642d2ac
## With python
# python -c "import hashlib; print hashlib.sha1('ss008063').hexdigest()"
2af9eaa6f48878b7952cbca17bc3d784b642d2ac |
...