I installed HAProxy for load ballancing before. How can I check what is my haproxy version which installed before in mu ubuntu?
what is my HAProxy version?
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.
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
Suppose if you run haproxy using docker
docker exec -it <container_name> haproxy --version
for e.g
docker exec -it haproxy haproxy --version
© 2022 - 2024 — McMap. All rights reserved.
haproxy -vv
will give you more details of how it was built, which should include the all important OpenSSL version. – Popup