zoukankan      html  css  js  c++  java
  • 解决报错 nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx

    今天在做nginx下https配置的时候,配置完nginx重启的时候,报错. 

    步骤开始:

    1.切换到nginx源码包

     # cd /usr/local/src/nginx-1.6.2

    2.查看nginx原有的模块

    # /usr/local/nginx/sbin/nginx -V

    3.那么我们的新配置信息就应该这样写 (在原有基础上增加 --with-http_ssl_modul):

    # ./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/zip/pcre-8.39 --with-http_stub_status_module --with-http_ssl_module

    4.运行上面的命令即可,等配置完

    配置完成后,运行命令

    # make

    这里不要进行make install,否则就是覆盖安装

    5.然后备份原有已安装好的nginx

    # cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak

    6.然后将刚刚编译好的nginx覆盖掉原有的nginx(这个时候nginx要停止状态)

    # cp ./objs/nginx /usr/local/nginx/sbin/

    提示是否覆盖,输入yes即可

    7.然后启动nginx,仍可以通过命令查看是否已经加入成功

    # /usr/local/nginx/sbin/nginx -V

    --with-http_ssl_module出现则表示增加成功 .

    至此开启http_ssl_module完成,开启https之旅 .

  • 相关阅读:
    Servlet设置Cookie无效
    IOS即时通讯XMPP搭建openfire服务器
    IOS之富文本编辑
    unittest单元测试框架总结
    杀死future处理的阻塞线程
    APP的UI设计原则
    如何降低一个程序的耦合性
    Hyperopt中文文档导读
    Hyperopt中文文档导读
    AdaBoost算法特性
  • 原文地址:https://www.cnblogs.com/victorcode/p/10901322.html
Copyright © 2011-2022 走看看