linux及nginx版本

CentOS Linux release 7.2.1511

nginx-1.11.9


第一步安装依赖包

[root@localhost ~]# yum -y install pcre pcre-devel gcc openssl openssl-devel


第二步创建nginx用户

[root@localhost ~]# useradd nginx -s /sbin/nologin -M


第三部进入下载的nginx目录下编译

[root@localhost ~]# ./configure --user=nginx --group=nginx --prefix=/app/nginx-1.11.9/ --with-http_stub_status_module --with-http_ssl_module


第四步安装nginx

[root@localhost nginx-1.11.9]# make && make install


第五步创建软连接(大神说升级什么的方便)

[root@localhost nginx-1.11.9]# ln -s /app/nginx-1.11.9 /app/nginx

到此安装完成


第六步启动重启时必要做的一步检测配置语法有没有错误(首次启动没有修改过配置,不会有语法错误)

[root@localhost nginx-1.11.9]# /app/nginx/sbin/nginx -t


第七步启动

[root@localhost nginx-1.11.9]# /app/nginx/sbin/nginx


访问服务器ip看到下图说明安装成功(记得打开80端口或者关闭防火墙)


centos7编译安装nginx_linux