1:首先我们需要下载nginx:
wget http://nginx.org/download/nginx-1.14.0.tar.gz
nginx-1.14.0.tar.gz:对应的版本号,比如现在最新的是1.14.0
2:下载好了之后我们就会发现有一个压缩包:进行解压
tar -zxvf nginx-1.14.0.tar.gz
3:解压到这一步我觉得我们需要配置一点东西,就是关于nginx安全方面的,隐藏名称,这里我们可以参考这篇博客:
https://blog.csdn.net/yuanzhenwei521/article/details/78819482
4:然后进行configure 命令:(在nginx-1.14.0目录下)
[******** nginx-1.14.0]# ./configure --prefix=/usr/local/nginx
应该会报错:
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
解决方法:
[******** nginx-1.14.0]# yum -y install pcre-devel
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.
解决方法:
[******** nginx-1.14.0]# yum install -y zlib-devel
最后大概是这个样子:
5:进行编译:
[******** nginx-1.14.0]# make && make install
编译好之后大概是这样:
6:安装位置在第4步截图会有显示
我的安装目录在:/usr/local/nginx
7:修改 nginx.conf文件
8:
检查语法:sbin/nginx -t
nginx端口:ps -ef|grep nginx
启动:sbin/nginx
停止:sbin/nginx -s quit/stop
9:
如果出现访问不了的话,但是nginx是正常启动中,可以通过查看端口进行确认。这时你可能就需要查看防火墙,或者检查下安全组,关于6379端口是否放行了
其实感觉这样安装的话只有一个好处,就是能够在编译前进行版本号,所用的nginx这个中间件进行隐藏外,其余方面到没有觉得有什么,
如果对安全方面没有太高的要求的话,或者说我就是用的nginx 1.12.1 这个版本,你看见了就看见了,我不在乎,那么就可以通过yum命令进行安装,会简单很多倍:https://blog.csdn.net/qq_38637558/article/details/80518199