安装
最后更新于:2022-04-02 05:41:45
## 安装
### 基本安装
* 参考地址:http://www.runoob.com/linux/nginx-install-setup.html
~~~
# 安装编译工具及库文件
yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
#首先要安装 PCRE,下载
wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
#解压
tar zxvf pcre-8.35.tar.gz
#切换目录
cd pcre-8.35
./configure
# 编译安装
make && make install
# 查看版本
pcre-config --version
#安装nginx
# 下载文件
wget http://nginx.org/download/nginx-1.6.2.tar.gz
# 解压
tar zxvf nginx-1.6.2.tar.gz
# 进入安装目录 编译安装,根据自己的目录设置nginx的目录以及pcre的目录
cd nginx-1.6.2
./configure --prefix=/root/web/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/root/pcre-8.35
make && make install
# 查看nginx版本
/root/web/nginx/sbin/nginx -v
~~~
';