CentOS7 之 安装 Nginx

1、下载 Nginx

下载地址:http://nginx.org/download/nginx-1.6.2.tar.gz

[root@localhost src]# cd /usr/local/src/
[root@localhost src]# wget http://nginx.org/download/nginx-1.6.2.tar.gz

2、解压安装包

[root@localhost src]# tar zxvf nginx-1.6.2.tar.gz

3、进入安装包目录

[root@localhost src]# cd nginx-1.6.2

4、编译安装

[root@localhost nginx-1.6.2]# ./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.40
[root@localhost nginx-1.6.2]#make
[root@localhost nginx-1.6.2]# make install

5、查看nginx版本

[root@localhost nginx-1.6.2]# /usr/local/webserver/nginx/sbin/nginx -v

nginx安装完成。

猜你喜欢

转载自blog.51cto.com/14388114/2481307