openssl安装

1.下载源码

https://www.shikexu.com/wp-content/uploads/2019/01/openssl-1.0.2q.tar.gz

2.解压

3.配置 ./config

4.安装 make install

默认会安装在 /usr/local/ssl 中

config的时候可能会报错,提示需要安装Perl5

安装Perl 5的执行步骤为:

####需要安装 perl-5https://www.cpan.org/src/README.html
 wget https://www.cpan.org/src/5.0/perl-5.28.0.tar.gz
 tar -xzf perl-5.28.0.tar.gz
 cd perl-5.28.0
 ./Configure -des -Dprefix=$HOME/localperl
 make
 make test
 make install
原文地址:https://www.cnblogs.com/dch0/p/11758327.html