I installed HAProxy for load ballancing before. How can I check what is my haproxy version which installed before in mu ubuntu?
Asked
Active
Viewed 5.0k times
5 Answers
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.

Wedge Martin
- 777
- 6
- 15
-
3`haproxy -vv` will give you more details of how it was built, which should include the all important OpenSSL version. – Philip Kearns Feb 05 '18 at 14:43
1
haproxy -vv
Will give the below details
- Version
- Build Options
- Default settings like
maxconn, bufsize, maxrewrite, maxpollevents
- Built with which
OpenSSL
version - Running on which
OpenSSL
version - Available polling systems
- Libraries version
- Which compression algorithms supported

Ashok
- 3,190
- 15
- 31
-1
Suppose if you run haproxy using docker
docker exec -it <container_name> haproxy --version
for e.g
docker exec -it haproxy haproxy --version

NIrav Modi
- 6,038
- 8
- 32
- 47