Nginx安装加载ssl错误
程序员文章站
2022-05-28 20:20:22
...
Nginx安装加载ssl错误问题解决
[root@jowei nginx-0.8.9]# make
make -f objs/Makefile
make[1]: Entering directory `/jowei/nginx-0.8.9'
cd /usr/include/openssl/ \
&& make clean \
&& ./config --prefix=/usr/include/openssl//openssl no-shared no-threads
\
&& make \
&& make install
make[2]: Entering directory `/usr/include/openssl'
make[2]: *** No rule to make target `clean'. Stop.
make[2]: Leaving directory `/usr/include/openssl'
make[1]: *** [/usr/include/openssl//openssl/include/openssl/ssl.h] Error 2
make[1]: Leaving directory `/jowei/nginx-0.8.9'
make: *** [build] Error 2
出现这个问题决绝办法:将你编译代命了也就是 with-openssl=/______这个路径指向你的源码安装包路径而不是你安装后的路径!
make -f objs/Makefile
make[1]: Entering directory `/jowei/nginx-0.8.9'
cd /usr/include/openssl/ \
make[2]: Entering directory `/usr/include/openssl'
make[2]: *** No rule to make target `clean'.
make[2]: Leaving directory `/usr/include/openssl'
make[1]: *** [/usr/include/openssl//openssl/include/openssl/ssl.h] Error 2
make[1]: Leaving directory `/jowei/nginx-0.8.9'
make: *** [build] Error 2
出现这个问题决绝办法:将你编译代命了也就是 with-openssl=/______这个路径指向你的源码安装包路径而不是你安装后的路径!
–with-pcre Nginx的rewrite功能需要使用pcre库才能工作,而Nginx的编译参数里面的这个选项并不是像常规的那样指定pcre的安装目录,而是指定pcre源代码的目录。
也就是说,如果你的系统路径下已经可以找到pcre的lib和include文件,这个选项可以不指定了。如果你的系统没有安装pcre,那么就指定该选项,Nginx会在编译的时候从你指定的这个目录把pcre编译进来。
–with-openssl
–with-zlib
–with-md5
–with-sha1
这几个选项跟pcre一样,指定的是源代码目录,不是这些类库的安装目录。
我一开始没有看清楚,就按照常规思路去指定目录,走了很多弯路…
以上就介绍了Nginx安装加载ssl错误,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
Nginx安装加载ssl错误
-
阿里云服务器ECS上ubuntu安装nginx后默认站点页面打开错误,显示无法访问此网站
-
阿里云服务器ECS上ubuntu安装nginx后默认站点页面打开错误,显示无法访问此网站
-
nginx安装错误:c compiler cc is not found
-
Ubuntu系统下的Nginx服务器软件安装时的常见错误解决
-
Nginx安装+HTTPS(SSL)证书导入
-
tomcat 8.0安装ssl证书,及centos7.2 的openssl升级到最新版本,及ERR_SSL_OBSOLETE_CIPHER错误解决...
-
nginx安装错误:c compiler cc is not found
-
安装Oracle加载数据库错误areasQueries的解决
-
Centos7.x下Nginx安装及SSL配置与常用命令详解