Возникла необходимость обновить SSL на сервере под управлением CentOS release 6.9 (Final)
Переходим по ссылке https://www.openssl.org/source и находим в описании LTS версию openssl —
Note: The latest stable version is the 1.1.0 series. The 1.0.2 series is our Long Term Support (LTS) release, supported until 31st December 2019. The 0.9.8, 1.0.0 and 1.0.1 versions are now out of support and should not be used.
wget https://www.openssl.org/source/openssl-1.0.2n.tar.gz
1 2 3 4 5 6 7 8 |
tar -xvf openssl-*.tar.gz cd openssl-1.0.2n/ ./config make install mv /usr/bin/openssl /root/openssl.back ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl |