Linux环境安装Nginx步骤
centos7平台编译环境使用如下指令安装:
1. 安装make:
yum -y install gcc automake autoconf libtool make
2. 安装g++:
yum -y install gcc gcc-c++
下面正式开始:
一、选定安装文件目录
可以选择任何目录,本文选择 cd /usr/local/src
cd /usr/local/src
因为本机内网环境,无法连接外网,下载链接: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
下载完成,rz上传至/usr/local/src 目录下进行编译安装。
tar -zxvf pcre-8.39.tar.gz cd pcre-8.39 ./configure make make install
安装Nginx:
下载地址: http://nginx.org/download/nginx-1.6.2.tar.gz
同样rz上传至/usr/local/src/ 目录
tar -zxvf nginx-1.6.2.tar.gz # cd 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.39
make
make install
查看nginx版本:
/usr/local/webserver/nginx/sbin/nginx -v
Nginx安装完成。