Linux openssl 离线安装
openssl
传输层安全性/安全套接层及其加密库
项目地址:https://gitcode.com/gh_mirrors/ope/openssl
免费下载资源
·
1 下载
下载地址 :https://www.openssl.org/source/
# 解压
$ tar -zxvf openssl-1.1.1g.tar.gz
$ cd openssl-1.1.1g
# 添加openssl配置
$ ./config --prefix=/usr/local/openssl
# 更新配置
$ ./config -t
$ make depend
$ make install
# 切换目录
$ cd /usr/local
$ vi /etc/ld.so.conf
# 在/etc/ld.so.conf文件的最后面,添加如下内容:
/usr/local/openssl/lib
# 执行:
$ ldconfig
# 添加OPESSL的环境变量
$ vi /etc/profile
#看清楚你的openssl/bin在哪里
export OPENSSL=/usr/local/openssl/bin
export PATH=$OPENSSL:$PATH:$HOME/bin
# 刷新profile 生效
$ source /etc/profile
# 安装完毕,检查一下
$ ldd /usr/local/openssl/bin/openssl
GitHub 加速计划 / ope / openssl
25.13 K
9.99 K
下载
传输层安全性/安全套接层及其加密库
最近提交(Master分支:1 个月前 )
fd39d1c8
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
2 个月前
ae87c488
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
2 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)