OS:CentOS7.2.1511 系统自带的openssl为1.0.1版本的,由于不支持ALPN,需要将他升级1.0.2以上的版本,这里用到的版本为1.1.0.c,当前1.1.0版本中最新的版本。 到https://github.com/openssl/openssl下载相应的版本。下载完毕后解压,注意编译安装openssl需要c和prel环境。 通过./config shared zlib-dynamic 来生成Makefile文件。zlib-dynamic参数是使其编译成动态库。 等上面执行完毕后执行make && make install进行安装。安装完毕后运行openssl version发现还是原先的版本。
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
在/etc/ld.so.conf文件中写入openssl库文件的搜索路径echo "/usr/local/lib64" >> /etc/ld.so.conf 运行ldconfig -v 使修改后的/etc/ld.so.conf生效 此时运行openssl version发现版本变成最新的了,我们来看看/usr/lib64/libssl*
- 1
- 2
- 3
- 4
- 5
发现里面的还是老版本1.0.1e的库文件,拷贝一份新的libssl.so.1.1过去。
转载于http://blog.csdn.net/rznice/article/details/53504895
原文链接:https://www.f2er.com/centos/379305.html