1.在安装nginx前首先要确认系统中安装了gcc、pcre-devel、zlib-devel、openssl-devel。
安装命令
yum -y install gcc pcre-devel zlib-devel openssl openssl-devel
nginx下载地址:https://nginx.org/download/
2.将下载好的nginx上传到你想要上传的目录
## 解压
tar -zxvf nginx-1.9.9.tar.gz
##进入nginx目录
cd nginx-1.9.9
## 配置1
./configure --prefix=/usr/local/nginx
## 如需配置https,则不要执行配置1
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
#编译安装
# make
# make install
在编译的时候可能会遇到的报错
安装nginx时出现In function ‘ngx_murmur_hash2’等错误
原因,是将警告当成了错误处理,打开/home/vagrant/nginx-1.11.2/objs/Makefile,
去掉CFLAGS中的-Werror
再重新make
-Wall 表示打开gcc的所有警告
-Werror,它要求gcc将所有的警告当成错误进行处理
“src/os/unix/ngx_user.c:36:7: 错误:‘struct crypt_data’没有名为‘current_salt’的成员”
vi src/os/unix/ngx_user.c把它报错的这一句注释掉了
有时候还可能会存在openssl版本太高,和nginx产生版本上的问题,那么就需要我们手动去安装了
1.卸载
apt-get purge openssl
rm -rf /etc/ssl
2.安装
wget --no-check-certificate https://www.openssl.org/source/old/1.0.0/openssl-1.0.0.tar.gz
tar xzf openssl-1.0.0.tar.gz
cd openssl-1.0.0/
./config shared --prefix=/usr/local --openssldir=/usr/local/ssl
make && make install