如下图:
目录
1.重新安装nginx提示:ssl modules require the openssl library
1.重新安装nginx提示:ssl modules require the openssl library
使用 ./configure --profix=/opt/gjjw_zhcx/nginx-gjjw-1.19.10 --with-http_ssl_modul安装错误如下图:ssl modules require the opensll library
错误提示原因是因为程序没有找到openssl包。于是检查系统是否安装openssl
2.检查系统安装openssl
使用 rpm -qa openssl 发现系统是有安装包的
3.安装Nginx指定到包路径
使用which openssl查看openssl安装路径
然后重新安装并指定到openssl安装路径
发现还是同样的错误,尝试cd 到openssl路径。结果找不到目录
所以想着系统的openssl有问题。去找了个压缩包上传到服务器,重新安装
4.再次重新安装
使用命令
./configure --profix=/opt/gjjw_zhcx/nginx-gjjw-1.19.10 --with-http_ssl_modu --with-openssl=/opt/openssl-1.1.0e
/opt/openssl-1.1.0e 为解压目录
安装成功!!!!!