kuwaite33

Member
Apr 20, 2022
21
4
3
Kuwait
cPanel Access Level
Website Owner
Hello,
I upgraded properly

To confirm the upgrade

[root@ ~]# openssl version
OpenSSL 1.1.1n 15 Mar 2022 :cool:

When confirming



[root@~]# yum info openssl
Loaded plugins: fastestmirror, universal-hooks
Loading mirror speeds from cached hostfile
* EA4: 185.15.22.168
* cpanel-addons-production-feed: 185.15.22.168
* cpanel-plugins: 185.15.22.168
* base: centosmirror.netcup.net
* epel: mirror.23m.com
* extras: centosmirror.netcup.net
* rpmfusion-free-updates: ftp-stud.hs-esslingen.de
* updates: mirror.imt-systems.com
Installed Packages
Name : openssl
Arch : x86_64
Epoch : 1
Version : 1.0.2k :cool:
Release : 25.el7_9
Size : 814 k
Repo : installed
From repo : updates
Summary : Utilities from the general purpose cryptography library with TLS implementation
URL : /index.html
License : OpenSSL
Description : The OpenSSL toolkit provides support for secure communications between
: machines. OpenSSL includes a certificate management tool and shared
: libraries which provide various cryptographic algorithms and
: protocols.

The version has not changed to the new version
What's the solution
Thank you
 
Last edited by a moderator:

cPRex

Jurassic Moderator
Staff member
Oct 19, 2014
17,470
2,843
363
cPanel Access Level
Root Administrator
Hey there! Can you let me know how you tried to update OpenSSL and what operating system you're using? I just checked an AlmaLinux 8 machine and see this version present:

openssl-1.1.1k-6.el8_5.x86_64

In general, it's not recommended to try and update that package past the point of what is provided with the operating system base packages as you could run into unexpected compatibility issues.
 

kuwaite33

Member
Apr 20, 2022
21
4
3
Kuwait
cPanel Access Level
Website Owner
Hello
My operating system is
Operating System
CentOS v7.9.2009

Use the following update method
7
openssl version
yum info openssl
cd /usr/local/src
wget https://www.openssl.org/source/openssl-1.1.1n.tar.gz
tar -xvzf openssl-1.1.1n.tar.gz
cd openssl-1.1.1n
./config
make depend
make
make test
make install
mv /usr/bin/openssl /root/
#ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl
openssl version

Thank you