nginx升级OpenSSL版本
程序员文章站
2022-07-08 16:43:45
...
1、查看OpenSSL版本
查看OpenSSL现版本为1.0.2k-fips
2、下载OpenSSL源码包
下载地址 https://www.openssl.org/source
[email protected] ~]# cd /usr/local/src/
[[email protected] src]# wget -c https://www.openssl.org/source/openssl-1.1.1j.tar.gz
3、编译安装nginx并指定新版本OpenSSL路径
[[email protected] src]# /apps/nginx/sbin/nginx -s stop
[[email protected] src]# cd /usr/local/src/nginx-1.18.0/
[[email protected] nginx-1.18.0]# ./configure --prefix=/apps/nginx --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --with-stream --with-stream_ssl_module --with-stream_realip_module --with-http_ssl_module --with-openssl=/usr/local/src/openssl-1.1.1j
[[email protected] nginx-1.18.0]# make && make install
4、启动nginx并查看OpenSSL版本
[[email protected] nginx-1.18.0]# /apps/nginx/sbin/nginx
[[email protected] nginx-1.18.0]# /apps/nginx/sbin/nginx -V
nginx version: nginx/1.18.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC)
built with OpenSSL 1.1.1j 16 Feb 2021
TLS SNI support enabled
configure arguments: --prefix=/apps/nginx --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre --with-stream --with-stream_ssl_module --with-stream_realip_module --with-http_ssl_module --with-openssl=/usr/local/src/openssl-1.1.1j
推荐阅读
-
Android升级支持库版本遇到的两个问题详解
-
xcode升级后ios9.0不能使用http协议的版本的解决方法介绍
-
怎么升级ie浏览器的版本(教你升级浏览器到最高版本)
-
Win10怎么查看DX版本?Win10升级DX12的教程
-
老版本Firefox浏览器曝严重漏洞 用户赶快升级并修改密码
-
微信公众号客服功能怎么升级为最新版本?
-
CUH-1200版本PS4游戏机完全拆解图赏:偷工减料or工艺升级?
-
怎么升级ie浏览器的版本(教你升级浏览器到最高版本)
-
CentOS 7.x编译安装Nginx1.10.3+MySQL5.7.16+PHP5.2 5.3 5.4 5.5 5.6 7.0 7.1多版本全能环境
-
Linux下Nginx安装的方法(pcre和openssl)