Install & Use HAProxy in Linux Ubuntu 18

From Gejoreuy
Revision as of 15:52, 2 March 2020 by Gejor (talk | contribs) (Created page with "Introduction & concepts : https://www.digitalocean.com/community/tutorials/an-introduction-to-haproxy-and-load-balancing-concepts <br>Step by step installation and how to use...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction & concepts : https://www.digitalocean.com/community/tutorials/an-introduction-to-haproxy-and-load-balancing-concepts
Step by step installation and how to use : https://tecadmin.net/how-to-setup-haproxy-load-balancing-on-ubuntu-linuxmint/

Inj HAProxy configuration just change the listening below :

   listen stats *:1936
          stats enable
          stats hide-version
          stats refresh 30s
          stats show-node
          stats auth username:password
          stats uri  /stats

To :

  listen  stats
          bind     *:1936