zoukankan      html  css  js  c++  java
  • openresty:已经安装了openssl,但是执行 ./configure时还是一直报:./configure: error: SSL modules require the OpenSSL library.

    安装openresty时,执行 ./configure时一直报:./configure: error: SSL modules require the OpenSSL library.

    ./configure: error: SSL modules require the OpenSSL library.
    You can either do not enable the modules, or install the OpenSSL library
    into the system, or build the OpenSSL library statically from the source
    with nginx by using --with-openssl=<path> option.

    我以为是openssl没安装成功,再次yum install  openssl,但是发现明明已经是有openssl存在的了。。。

    看错误提示:

    or build the OpenSSL library statically from the source
    with nginx by using --with-openssl=<path> option.

    很开心,按上面的指示,应该是要指定openssl的位置,于是which openssl找到openssl的安装位置, ./configure时增加参数,--with-openssl=/usr/local/bin/openssl,(这一步是错误的!!!)

    ./configure是通过了,但是,在执行gmake时就出现了新问题,
    gmake[2]: *** [/usr/local/ssl/.openssl/include/openssl/ssl.h] Error 127
    gmake[2]: Leaving directory `/root/openresty-1.11.2.2/build/nginx-1.11.2'
    gmake[1]: *** [build] Error 2
    gmake[1]: Leaving directory `/root/openresty-1.11.2.2/build/nginx-1.11.2'
    gmake: *** [all] Error 2


    究其原因,上面提示的应该是一个source的位置,而不应该是openssl的安装位置。。。
    参考博客:https://www.phpsong.com/2930.html

    但是openssl是通过yum install安装的,没有存到它的源码包(还是说我没找到?)
    只能再到官网下载一个,https://www.openssl.org/source/openssl-1.1.1d.tar.gz
    找到不你需要的版本没关系,找到一个版本相近的包,复制其下载链接,将后面的openssl版本替换成你需要的即可
    (可以通过openssl vesion查看已经安装了的openssl的版本信息)

    最后解压openssl源码包到一个位置
    最终的 ./configure的参数形式为
    ./configure --prefix=/opt/openresty 
                --with-luajit 
                --without-http_redis2_module 
                --with-http_iconv_module 
                --with-http_postgres_module 
                --with-openssl=/OpenResty/package/openssl-1.1.0e

    问题解决,希望可以帮到你



  • 相关阅读:
    五分钟秒懂机器学习混淆矩阵、ROC和AUC
    五分钟学会Python装饰器,看完面试不再慌
    LeetCode54 螺旋矩阵,题目不重要,重要的是这个技巧
    Golang——变量的声明与定义
    LeetCode52题,别再问我N皇后问题了
    spark中的pair rdd,看这一篇就够了
    MySQL不香吗,为什么还要有noSQL?
    JBOSS安装配置详细教程
    Aspose.Words关于域的应用
    SqlServer PIVOT行转列
  • 原文地址:https://www.cnblogs.com/Guhongying/p/11636369.html
Copyright © 2011-2022 走看看