How to reload HAProxy config on CentOS with minimal downtime?

6,247

Use reload instead.

systemctl reload haproxy
Share:
6,247
A X
Author by

A X

Updated on September 18, 2022

Comments

  • A X
    A X over 1 year

    When I change haproxy.cfg, currently I am "applying" those changes by running this command on CentOS:

    systemctl restart haproxy
    

    Is there a better way to do this on CentOS that does not involve downtime, or minimum downtime (or connection resets)?

  • A X
    A X over 4 years
    Thanks - and you can confirm that reload performs this operation with zero downtime? Can you also confirm it does not reset live TCP connections?