I am using yum update command to update openssl on Linux machine.
The command is
# yum update opensslTo update to to a specific version
Say If I want to update this to the specific version like 1.0.0e.I currently have Openssl 0.9.8w in my machine.
Is this possible to do this.
Please suggest.
1 Answer
You can only update to whatever version of the openssl package is available in the yum repositories. You can check to see which openssl package is available by entering the command:
yum list available opensslOn RHEL5, the version available at this time is openssl-0.9.8e-22.el5_8.4.
On RHEL6, the current version is openssl-1.0.0-27.el6.
If you are on an RHEL5 or CentOS5 machine, you cannot update to the openssl-1.0.0 package that is only available for RHEL6 or CentOS6.
2