Linux环境下安装nginx以及遇到的大坑之 [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx

时间:2024-05-21 16:05:26

1.安装gcc环境
安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc。
命令:yum install gcc-c++ 
2.安装PCRE库
PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式,所以需要在linux上安装pcre库。
命令:yum install -y pcre pcre-devel
3.安装zlib库
zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在linux上安装zlib库。
命令:yum install -y zlib zlib-devel
4.安装openssl库
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的**和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。
nginx不仅支持http协议,还支持https(即在ssl协议上传输http),所以需要在linux安装openssl库。
命令:yum install -y openssl openssl-devel

5.下载nginx安装包 然后进行解压

命令:tar -zxvf nginx-1.6.2.tar.gz

6.配置configure

在 nginx-1.6.2 目录下执行以下命令 

命令:./configure \

7.编译安装 

命令:make

命令:make install

8.安装成功查看安装目录   如下图:

Linux环境下安装nginx以及遇到的大坑之 [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx

9.运行nginx

首先切换到sbin目录下   命令为:/usr/sbin     ,然后执行./nginx命令   此时报错:nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:34   经过百度各种解决方法按照别人的操作都没有解决问题   然后重新安装都没有好      报错如下:

Linux环境下安装nginx以及遇到的大坑之 [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx

最后无奈的试了下在线安装   通过yum命令重新安装nginx就好了    命令:yum install nginx  如下图:
   Linux环境下安装nginx以及遇到的大坑之 [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx

 

10.测试Nginx是否运行成功

Nginx的端口是80,所以在浏览器上运行http:[linux的ip地址]即可,如果运行成功,出现如下界面:

Linux环境下安装nginx以及遇到的大坑之 [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx