nginx怎么安装

nginx怎么安装

nginx可以使用各平台的默认包来安装,本文是介绍使用源码编译安装,包括具体的编译参数信息。

正式开始前,编译环境gcc g++ 开发库之类的需要提前装好,这里默认你已经装好。

ububtu平台编译环境可以使用以下指令

1

2

aptget install buildessential

aptget install libtool

centos平台编译环境使用如下指令

安装make:

1

yum y install gcc automake autoconf libtool make

安装g++:

1

yum install gcc gccc++

下面正式开始
—————————————————————————
一般我们都需要先装pcre, zlib,前者为了重写rewrite,后者为了gzip压缩。
1.选定源码目录
可以是任何目录,本文选定的是/usr/local/src

1

cd /usr/local/src

2.安装PCRE库
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ 下载最新的 PCRE 源码包,使用下面命令下载编译和安装 PCRE 包:

1

2

3

4

5

6

7

cd /usr/local/src

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz

tar zxvf pcre8.37.tar.gz

cd pcre8.34

./configure

make

make install

3.安装zlib库
http://zlib.net/zlib-1.2.8.tar.gz 下载最新的 zlib 源码包,使用下面命令下载编译和安装 zlib包:

1

2

3

4

5

6

7

8

cd /usr/local/src

 

wget http://zlib.net/zlib-1.2.8.tar.gz

tar zxvf zlib1.2.8.tar.gz

cd zlib1.2.8

./configure

make

make install

4.安装ssl(某些vps默认没装ssl)

1

2

3

cd /usr/local/src

wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz

tar zxvf openssl1.0.1t.tar.gz

5.安装nginx

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

cd /usr/local/src

wget http://nginx.org/download/nginx-1.4.2.tar.gz

tar zxvf nginx1.4.2.tar.gz

cd nginx1.4.2

 

./configure sbinpath=/usr/local/nginx/nginx

confpath=/usr/local/nginx/nginx.conf

pidpath=/usr/local/nginx/nginx.pid

withhttp_ssl_module

withpcre=/opt/app/openet/oetal1/chenhe/pcre8.37

withzlib=/opt/app/openet/oetal1/chenhe/zlib1.2.8

withopenssl=/opt/app/openet/oetal1/chenhe/openssl1.0.1t

 

make

make install

–with-pcre=/usr/src/pcre-8.34 指的是pcre-8.34 的源码路径。
–with-zlib=/usr/src/zlib-1.2.7 指的是zlib-1.2.7 的源码路径。

安装成功后 /usr/local/nginx 目录下如下

1

2

3

4

5

6

fastcgi.conf            koiwin             nginx.conf.default

fastcgi.conf.default    logs                scgi_params

fastcgi_params          mime.types          scgi_params.default

fastcgi_params.default  mime.types.default  uwsgi_params

html                    nginx               uwsgi_params.default

koiutf                 nginx.conf          winutf

6.启动
确保系统的 80 端口没被其他程序占用,运行/usr/local/nginx/nginx 命令来启动 Nginx,

1

netstat ano|grep 80

如果查不到结果后执行,有结果则忽略此步骤(ubuntu下必须用sudo启动,不然只能在前台运行)

1

sudo /usr/local/nginx/nginx

打开浏览器访问此机器的 IP,如果浏览器出现 Welcome to nginx! 则表示 Nginx 已经安装并运行成功。

nginx怎么安装

—————————————————–
到这里nginx就安装完成了,如果只是处理静态html就不用继续安装了

如果你需要处理php脚本的话,还需要nginx怎么安装

下面安装排错

附:可能遇到的错误和一些帮助信息

1.1编译pcre错误

1

2

3

4

5

libtool: compile: unrecognized option `DHAVE_CONFIG_H

libtool: compile: try `libtool –help’ for more information.

make[1]: *** [pcrecpp.lo] Error 1

make[1]: Leaving Directory `/usr/local/src/pcre8.34

make: *** [all] Error 2

1

2

3

4

5

aptget install g++

aptget install buildessential

make clean

./configure

make

1

2

3

4

5

make: *** No rule to make target `build‘, needed by `default’.  Stop.

./configure: error: SSL modules require the OpenSSL library.

You can either do not enable the modules, or install the OpenSSL library

into the system, or build the OpenSSL library statically from the source

with nginx by using withopenssl=path> option.

1

2

aptget install openssl

aptget install libssldev

1

yum y install openssl openssldevel

1

2

3

4

5

6

7

./configure

    sbinpath=/usr/local/nginx/nginx

    confpath=/usr/local/nginx/nginx.conf

    pidpath=/usr/local/nginx/nginx.pid

    withhttp_ssl_module

    withpcre=../pcre4.4

    withzlib=../zlib1.1.3

© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享