what is my HAProxy version?
Asked Answered
P

5

25

I installed HAProxy for load ballancing before. How can I check what is my haproxy version which installed before in mu ubuntu?

Poster answered 6/6, 2012 at 6:4 Comment(0)
C
30

haproxy --version

If you want to see the package info on Ubuntu, you can use 'aptitude show haproxy' to get version and other details about what's installed.

Caption answered 30/7, 2012 at 16:19 Comment(1)
haproxy -vv will give you more details of how it was built, which should include the all important OpenSSL version.Popup
R
19

i used the command on CentOS 5

/usr/sbin/haproxy -v
Reggi answered 7/3, 2013 at 6:10 Comment(0)
W
1

On Red Hat Enterprise Linux is:

haproxy -v

Worried answered 19/10, 2020 at 12:54 Comment(0)
N
1

haproxy -vv

Will give the below details

  1. Version
  2. Build Options
  3. Default settings like maxconn, bufsize, maxrewrite, maxpollevents
  4. Built with which OpenSSL version
  5. Running on which OpenSSL version
  6. Available polling systems
  7. Libraries version
  8. Which compression algorithms supported
Neolamarckism answered 20/10, 2020 at 12:38 Comment(0)
M
-1

Suppose if you run haproxy using docker

docker exec -it <container_name> haproxy --version

for e.g

docker exec -it haproxy haproxy --version
Mane answered 11/12, 2020 at 11:13 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.