环境:
起因:
nginx 需要ssl模块重新编译安装,
使用命令:
./configure --prefix=/usr/local/localApp/env/nginx-1.6.1/ --with-http_stub_status_module --with-http_ssl_module
发现编辑报错,找不到ssl模块,需要手动指定openssl位置,
使用whereis 命令结果:
当时只有1,3 项,中间哪一项是我手动编译安装openssl后出现的,
使用命令:
./configure --prefix=/usr/local/localApp/env/nginx-1.6.1/ --with-http_stub_status_module --with-openssl= xxx --with-http_ssl_module
后指定为1,3,两项都会报错,(一个为脚本一个为不知道什么鬼的压缩包不报错才怪)
于是手动编译安装openssl!!!!
安装目录为/usr/local/ssl
openssl 至此搞定
=============================================================
回到nginx的源码包,使用命令
./configure --prefix=/usr/local/localApp/env/nginx-1.6.1/ --with-http_stub_status_module --with-openssl= /usr/local/ssl --with-http_ssl_module
编译时出现:
此类的错误,报错找不到这些文件
===========================
解决方法:
进入nginx源码包修改关于openssl的配置文件:
配置文件路径:
修改conf中一下配置内容:
CORE_INCS="$CORE_INCS $OPENSSL/.openssl/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/.openssl/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libcrypto.a"
CORE_LIBS="$CORE_LIBS $NGX_LIBDL"
为:
CORE_INCS="$CORE_INCS $OPENSSL/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libcrypto.a"
CORE_LIBS="$CORE_LIBS $NGX_LIBDL"
==================================
再次编译安装,搞定!!!
=================================
顺便提一下,原先系统中的openssl不要随便卸载,坑很大,一个命令下去三十多个依赖没了,chrome都被卸掉了!!
根据/var/log/apt/history.log 的日志记录又将依赖一个一个装了回来!!!!!!!