Nginx基于Ubuntu的源码安装

Nginx 基于Ubuntu的源码安装详解

Nginx介绍


     Nginx 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:百度、京东、新浪、网易、腾讯、淘宝等。


Nginx 的安装

Nginx 安装之前需要三个依赖的支持

    Nginx模块依赖性:

        ① gzip 模块需要 zlib 库 

        ② rewrite 模块需要 pcre 库 

        ③ ssl 功能需要 openssl 库 

1. pcre库安装 ,该库提供了正则表达式的支持。

$ wge  http://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz

$ tar  -zxf   pcre-8.42.tar.gz

$ cd pcre-8.42

$ ./configure

$ make

$ sudo  make  install

2. zlib库安装,Gzip模块需要这个库来做headers压缩。

$ wget  http://zlib.net/zlib-1.2.11.tar.gz

$ tar  -zxf   zlib-1.2.11.tar.gz

$ cd zlib-1.2.11

$ ./configure

$ make

$ sudo  make   install

3. openssl库,nginx ssl模块需要这个库来支持https协议。

$  wget http://www.openssl.org/source/openssl-1.0.2f.tar.gz

$  tar -zxf openssl-1.0.2f.tar.gz

$  cd openssl-1.0.2f

$ ./configure darwin64-x86_64-cc --prefix=/usr/local/openssl

$ make

$ sudo make install

4.下载Nginx源码包,并进行解压、安装。

 $  wget   http://nginx.org/download/nginx-1.12.0.tar.gz    

$  tar     zxf    nginx-1.12.0.tar.gz   

$   cd   nginx-1.12.0    

$  ./configure    --prefix=/usr/local/nginx2    --with-pcre   --with-http_stub_status_module    --with-http_ssl_module     --with-http_gzip_static_module    --with-http_realip_module   --add-module=/usr/local/nginx2/nginx_upstream_check_module-master    --with-pcre=/usr/local/pcre/pcre-8.42 --with-zlib=/usr/local/zlib/zlib-1.2.11 --with-openssl=/usr/local/openssl/openssl-1.0.2f   

$  make   

$  make   install

5. 其他选项指定方式

--error-log-path=path  默认是prefix/logs/error.log

--http-log-path=path   默认是prefix/logs/access.log

--user=user            默认是nobody,表示由哪个用户运行nginx worker thread

--group=group          组名经常设置为一个没有权限的用户名

--with-pcre-jit        构建pcre库时,同时带上"just-in-time compilation"的功能,这样就能在配置文件中使用pcre_jit指令了

指定nginx的构建选项,同时还可以指定编译器的选项:

--with-cc-opt=parameters   添加额外的参数到CFLAGS 变量中

  在FreeBSD下,如果使用的是系统自带的pcre库,那么编译时必须添加:--with-cc-opt="-I /usr/local/include";

  如果需要增加select()方法支持的文件数量,可以添加:--with-cc-opt="-D FD_SETSIZE=2048";

--with-ld-opt=parameters    添加linking时需要的额外参数

  在FreeBSD下,如果使用的是系统自带的pcre库,那么编译时必须添加:--with-ld-opt="-L /usr/local/lib";

6. nginx的模块选择

     模块可以静态链接到nginx的二进制程序中,这样当nginx启动的时候,就会加载它们;使用--add-module选项;

     模块可以动态链接到nginx的二进制程序中,这样只有在配置文件中指定这个模块时,nginx才会去加载它们,使用--add-dynamic-module选项;

Nginx 的基本操作

 1. Nginx版本以及配置查看

root@ubuntu:/usr/local/nginx2/sbin# ./nginx -V

nginx version: nginx/1.12.0

built by gcc 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10)

built with OpenSSL 1.0.1c 10 May 2012

TLS SNI support enabled

configure arguments: --prefix=/usr/local/nginx2 --with-pcre --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-http_realip_module --add-module=/usr/local/nginx2/nginx_upstream_check_module-master --with-pcre=/usr/local/pcre/pcre-8.42 --with-zlib=/usr/local/zlib/zlib-1.2.11 --with-openssl=/usr/local/openssl/openssl-1.0.1c-arm

root@ubuntu:/usr/local/nginx2/sbin# ./configure --prefix=/usr/local/nginx2 --with-pcre --with-http_stub_status_module --with-http_ssl_module  --with-http_gzip_static_module --with-http_realip_module --add-module=/usr/local/nginx2/nginx_upstream_check_module-master --with-pcre=/usr/local/pcre/pcre-8.42  --with-zlib=/usr/local/zlib/zlib-1.2.11  --with-openssl=/usr/local/openssl/openssl-1.0.1c-arm

2. 启动关闭nginx

*检查配置文件是否正确

/usr/local/nginx-1.6/sbin/nginx -t   conf/nginx.conf

*启动、关闭

./sbin/nginx # 默认配置文件 conf/nginx.conf,-c 指定

 ./sbin/nginx -s stop 或 pkill nginx

*重启,不会改变启动时指定的配置文件

 ./sbin/nginx -s reload 或 kill -HUP `cat /usr/local/nginx-1.6/logs/nginx.pid`

3. 确认nginx已经起来并且运行正常

$ curl -I127.0.0.1

HTTP/1.1200 OK

Server: nginx/1.11.9


Nginx基于Ubuntu的源码安装_第1张图片

你可能感兴趣的:(Nginx基于Ubuntu的源码安装)