首页 > 其他分享 >.configure error SSL modules require the OpenSSL library.

.configure error SSL modules require the OpenSSL library.

时间:2023-08-10 17:01:09浏览次数:39  
标签:configure require modules OpenSSL library nginx usr using local

CentOS 6.5 下 安装 Tengine 执行配置命令

./configure

时提示以下错误:

./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= option.

解决方法:

执行以下命令:

yum -y install openssl openssl-devel

执行成功之后再执行

./configure

Configuration summary

+ using system PCRE library

+ using system OpenSSL library

+ md5: using OpenSSL library

+ sha1: using OpenSSL library

+ using system zlib library

+ jemalloc library is disabled

nginx path prefix: "/usr/local/nginx"

nginx binary file: "/usr/local/nginx/sbin/nginx"

nginx configuration prefix: "/usr/local/nginx/conf"

nginx configuration file: "/usr/local/nginx/conf/nginx.conf"

nginx pid file: "/usr/local/nginx/logs/nginx.pid"

nginx error log file: "/usr/local/nginx/logs/error.log"

nginx http access log file: "/usr/local/nginx/logs/access.log"

nginx http client request body temporary files: "client_body_temp"

nginx dso module path: "/usr/local/nginx/modules/"

nginx http proxy temporary files: "proxy_temp"

nginx http fastcgi temporary files: "fastcgi_temp"

nginx http uwsgi temporary files: "uwsgi_temp"

nginx http scgi temporary files: "scgi_temp"

看到最后这样的输出,就是配置成功了。


标签:configure,require,modules,OpenSSL,library,nginx,usr,using,local
From: https://blog.51cto.com/u_16111396/7037629

相关文章

  • NOTE: mbedtls 2.28 is required for TLS support!
    NOTE:mbedtls2.28isrequiredforTLSsupport!"这个提示表示您需要安装版本为2.28或更高版本的mbedtls库,以便为您正在构建或使用的软件启用TLS(传输层安全)支持。TLS用于在网络上建立安全通信,通常在HTTPS连接中使用。sudoaptinstalllibmbedtls-dev......
  • sudo: a terminal is required to read the password; either use..... 问题解决方法
    转载自:sudo:aterminalisrequiredtoreadthepassword;eitheruse……问题解决方法_akaiziyou的博客-CSDN博客问题sudo:aterminalisrequiredtoreadthepassword;eitherusethe-Soptiontoreadfromstandardinorconfigureanaskpasshelper出现场景某个......
  • dbt modules 宏简单说明
    dbtmodules宏提供了让dbt访问python包的能力,处理上基于了jinja的上下问处理,但是目前官方没有完整暴露此方法核心还是因为安全问题,只提供了一些时间、正则、迭代处理的,实际使用上基于了python模块的动态加载(getattr)modules宏的使用参考 {%setnow=modules.da......
  • TypeError: a bytes-like object is required, not ‘str‘,如何解决?
    在Python编程中,当我们在处理文件或网络传输等场景时,有时可能会遇到以下错误信息:"TypeError:abytes-likeobjectisrequired,not'str'"。这个错误通常表示我们传递了一个字符串对象而不是字节对象,导致了类型不匹配。如下所示,我们对字段进行base64编码时,出现了报错:在本文中,我们......
  • configure: line 481: sed: command not found
    执行configure时,提示各种命令都没有找到一、执行./configureCFLAGS=-D_GNU_SOURCE二、错误提示./configureCFLAGS=-D_GNU_SOURCE./configure:line481:sed:commandnotfound./configure:line480:expr:commandnotfound./configure:line481:sed:command......
  • 人人贷(中js逆向学会模块改写(define/require/exports/module)
    链接https://renrendai.com/login?returnUrl=%2F这里逆向登入中的password加密 我们需要定位到password加密到位置,通过下面的搜索j_password,或者通过栈调用方式查找 可以看到加密的是这种模式define("common:node_modules/glpb-components-common/src/rsa/rsaCrypt",f......
  • uniapp获取位置时显示getLocation:fail the api need to be declared in the required
    uniapp获取位置时显示getLocation:failtheapineedtobedeclaredintherequiredPrivateInfosfieldinapp.json/ext.json解决方式:1.manifest.json文件 "mp-weixin" 中添加"permission":{"scope.userLocation":{&quo......
  • Lua require的搜索路径
    require时Lua语言中负责加载库的函数,他和dofile的区别主要在于:1.require会判断是否文件已经加载避免重复加载同一文件;2.require会搜索目录加载文件。require的目录搜索路径:用于搜索Lua文件的路径是变量package.path的当前值,当package初始化时,会将package.path设置为环境变量LU......
  • "No appenders found for logger" and "Please configure log4j properly"
    WhydoIseeawarningabout"Noappendersfoundforlogger"and"Pleaseconfigurelog4jproperly"?Thisoccurswhenthedefaultconfigurationfileslog4j.propertiesandlog4j.xmlcannotbefoundandtheapplicationperformsnoexplici......
  • @RequiredArgsConstructor 用法
    在我们写controller或者Service层的时候,需要注入很多的mapper接口或者另外的service接口,这时候就会写很多的@Autowired注解,代码看起来很乱lombok提供了一个注解:@RequiredArgsConstructor(onConstructor=@_(@Autowired))写在类上可以代替@Autowired注解,需要注意的是在注入时需要......