OpenSSL is a widely used library for implementing SSL/TLS encryption. Knowing which version is installed on your server helps you verify available features and check whether your system is affected by known security vulnerabilities.
Why Check the OpenSSL Version?
-
Confirm compatibility with SSL/TLS certificates.
-
Ensure your server supports modern encryption standards.
-
Identify if your system is exposed to known vulnerabilities (e.g., Heartbleed).
-
Plan upgrades or patches proactively.
Checking the Version on Linux Servers
-
Log in via SSH to your server.
-
Run the following command:
Bash openssl versionThis displays the installed OpenSSL version (e.g.,
OpenSSL 1.1.1w 11 Sep 2023). -
For more detailed information, run:
Bash openssl version -aThis shows build date, platform, compiler options, and directory paths.
Checking via WHM/cPanel
-
WHM and cPanel rely on the system’s OpenSSL installation.
-
To confirm the version:
-
Log in to your server via SSH.
-
Use the same
openssl versioncommand.
-
-
WHM itself does not display OpenSSL version directly; it must be checked at the OS level.
Notes
|