欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Centos65 下安装nginx128

程序员文章站 2022-03-25 19:29:24
...
1.选定源码目录
选定目录 /usr/local/

cd /usr/local/

2.安装PCRE库(准备安装包pcre-8.36.zip到local目录下)
cd /usr/local/
zip pcre-8.36.zip
cd pcre-8.36
./configure (编译)
make (预安装)
make install (正式安装)

3.安装zlib库
cd /usr/local/
wget http://zlib.net/zlib-1.2.8.tar.gz
tar -zxvf zlib-1.2.8.tar.gz cd zlib-1.2.8
./configure
make
make install
4.安装ssl(有的vps默认没装ssl)

cd /usr/local/
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar -zxvf openssl-1.0.1c.tar.gz
cd openssl-1.0.1c
./config
make

make install


5.安装nginx

Nginx 一般有两个版本,分别是稳定版和开发版,您可以根据您的目的来选择这两个版本的其中一个,下面是把 Nginx 安装到 /usr/local/nginx 目录下的详细步骤:

cd /usr/local/
wget http://nginx.org/download/nginx-1.2.8.tar.gz
tar -zxvf nginx-1.2.8.tar.gz
cd nginx-1.2.8
./configure --prefix=/usr/local/nginx --user=www --group=www --with-pcre=/usr/local/pcre-8.36 --with-zlib=/usr/local/zlib-1.2.8 --with-openssl=/usr/local/openssl-1.0.1c --with-http_ssl_module --with-http_stub_status_module(上面面为了展示需要写在多行,执行时内容需要在同一行)