博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux openssl 升级
阅读量:7175 次
发布时间:2019-06-29

本文共 566 字,大约阅读时间需要 1 分钟。

下载地址

fox.风

选择下载版本

一定要选择适合你当前软件的版本

例如当前 我的版本是 1.0.X版
这里选择

wget https://www.openssl.org/source/openssl-1.0.1u.tar.gz

编译安装

cd openssl-1.0.1u./config --prefix=/usr/local/opensslmakemake install

更新

mv /usr/bin/openssl /usr/bin/openssl.bakmv /usr/include/openssl /usr/include/openssl.bakln -s /usr/local/openssl/bin/openssl /usr/bin/opensslln -s /usr/local/openssl/include/openssl /usr/include/opensslecho “/usr/local/openssl/lib” >> /etc/ld.so.confldd /usr/local/openssl/bin/opensslldconfig -v

查看

openssl version -a

编译错误

make[1]: gcc: Command not found

yum -y install gcc

转载地址:http://vhdzm.baihongyu.com/

你可能感兴趣的文章
(C#)与Windows用户账户信息的获取
查看>>
thrift之TTransport层的内存缓存传输类TMemoryBuffer
查看>>
使用pull方式解析xml文件示例:
查看>>
学习jQuery的免费资源:电子书、视频、教程和博客
查看>>
找出数列中个数大于总数一半的元素(编程之美2.3)
查看>>
断路器(CircuitBreaker)设计模式
查看>>
SQL中利用DMV进行数据库性能分析
查看>>
讨论:程序员高手和菜鸟的区别是什么?
查看>>
SQL Server里的 ISNULL 与 NULLIF
查看>>
Linux Systemcall By INT 0x80、Llinux Kernel Debug Based On Sourcecode
查看>>
imageNamed 与 imageWithContentsOfFile的区别
查看>>
【Mysql 调用存储过程,输出参数的坑】
查看>>
LCS算法
查看>>
COM结构化存储中存储对象或者流对象的命名规则
查看>>
iOS开发基础知识--碎片26
查看>>
制作鼠标移动到div上面显示弹出框
查看>>
java既然存在gc线程,为什么还存在内存泄漏?
查看>>
Linux Vim
查看>>
UVA - 11987 Almost Union-Find[并查集 删除]
查看>>
使用css开启硬件加速提高网站性能
查看>>