Linux CentOs7.5 安装Nginx1.6.3后再安装其他模块ngx_http_ssl_module

nginx: [emerg] the “ssl” parameter requires ngx_http_ssl_module in /usr/local/ng inx/conf/nginx.conf:133

今天配置证书的时候nginx提示需要ngx_http_ssl_module这个模块,因为之前安装nginx的时候都是默认安装的,没有安装其他的一些模块,所以现在刚好要用到ngx_http_ssl_module这么一个模块,现在来安装他

1.查看之前的配置信息,在configure arguments: 后面,这次是在原来配置的基础上添加,所以等下配置的时候在后面补上 --with-http_ssl_module
1) /usr/local/nginx/sbin/nginx -V
2) 其中有一行是configure arguments: 这些都是之前的配置

在这里插入图片描述

2.关闭nginx服务
1) /usr/local/nginx/sbin/nginx -s stop
3.去之前安装nginx的源码包下面配置一下需要开启的模块
1) cd /xxxxxxx(之前解压出来的nginx源码目录)
2) ./configure --prefix=/usr/local/nginx  --with-http_ssl_module
3) make 就行了,不需要重新安装
4) 替换原来的nginx  cp ./objs/nginx /usr/local/nginx/sbin/
4.重新启动nginx查看已安装的模块出现–with-http_ssl_module
1)/usr/local/nginx/sbin/nginx
2) /usr/local/nginx/sbin/nginx -V

你可能感兴趣的:(linux,nginx)