Linux下Nginx源码编译安装

Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器,在高连接并发的情况下Nginx 是 Apache 服务器不错的替代品.其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好.目前中国大陆使用nginx网站用户有:新浪、网易、 腾讯,另外知名的微网志Plurk也使用nginx。 

Nginx 作为 负载均衡 服务器: 

Nginx 既可以在内部直接支持 Rails 和 PHP 程序对外进行服务,也可以支持作为 HTTP 代理服务器对外进行服务。 Nginx 采用 C 进行编写, 不论是系统资源开销还是 CPU 使用效率都比 Perlbal 要好很多。作为邮件代理服务器: 

Nginx 同时也是一个非常优秀的邮件代理服务器(最早开发这个产品的目的之一也是作为邮件代理服务器), Last.fm 描述了成功并且美妙的使用经验。Nginx 是一个安装非常简单,配置文件非常简洁(还能够支持perl语法), Bugs非常少的服务器: Nginx 启动特别容易,并且几乎可以做到 7*24 不间断运行,即使运行数个月也不需要重新启动。 你还能够不间断服务的情况下进行软件版本的升级。

官网下载

点击下载

[root@nginx ~]# ls
 nginx-1.15.2.tar.gz

安装依赖软件

##安装编译工具 gcc
[root@nginx ~]# yum install -y gcc

##安装PCRE库,pcre提供编译版本的库,pcre-devel提供开发阶段的头文件和编译项目的源代码。
[root@nginx ~]# yum install -y pcre pcre-devel 

##安装OpenSSL加密库,nginx中如果服务器需要提供安全网页则会用到OpenSSL库
[root@nginx ~]# yum install -y openssl  openssl-devel

##安装zlib库,zlib库提供了压缩算法,在nginx的各种模块中需要使用gzip压缩
[root@nginx ~]# yum install -y zlib  zlib-devel

解压

[root@nginx ~]# tar  zxf  nginx-1.15.2.tar.gz
[root@nginx ~]# ls
nginx-1.15.2  nginx-1.15.2.tar.gz

查看模块

[root@nginx ~]# cd nginx-1.15.2
[root@nginx nginx-1.15.2]# ls
auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  man  README  src

[root@nginx nginx-1.15.2]# ./configure --help    ##查看参数

--help                            print this message

--prefix=PATH                      nginx安装路径
  --sbin-path=PATH                  nginx二进制执行文件路径
  --modules-path=PATH                set modules path
  --conf-path=PATH                  nginx配置文件存放位置
  --error-log-path=PATH              错误日志文件路径
  --pid-path=PATH                    nginx.pid文件路径(pid文件包含进程的标识符)
  --lock-path=PATH                  锁文件存放路径(锁文件(nginx.log)用于控制nginx进程没有被启动两次))

--user=USER                        指定启动nginx进程的默认用户;set non-privileged user for worker processes
  --group=GROUP                      指定启动nginx进程的默认用户组;set non-privileged group for worker processes

--build=NAME                      set build name
  --builddir=DIR                    set build directory

--with-select_module              enable select module
  --without-select_module            disable select module
  --with-poll_module                enable poll module
  --without-poll_module              disable poll module

--with-threads                    enable thread pool support

--with-file-aio                    enable file AIO support

--with-http_ssl_module            enable ngx_http_ssl_module
  --with-http_v2_module              enable ngx_http_v2_module
  --with-http_realip_module          enable ngx_http_realip_module
  --with-http_addition_module        enable ngx_http_addition_module
  --with-http_xslt_module            enable ngx_http_xslt_module
  --with-http_xslt_module=dynamic    enable dynamic ngx_http_xslt_module
  --with-http_image_filter_module    enable ngx_http_image_filter_module
  --with-http_image_filter_module=dynamic
                                    enable dynamic ngx_http_image_filter_module
  --with-http_geoip_module          enable ngx_http_geoip_module
  --with-http_geoip_module=dynamic  enable dynamic ngx_http_geoip_module
  --with-http_sub_module            enable ngx_http_sub_module
  --with-http_dav_module            enable ngx_http_dav_module
  --with-http_flv_module            enable ngx_http_flv_module
  --with-http_mp4_module            enable ngx_http_mp4_module
  --with-http_gunzip_module          enable ngx_http_gunzip_module
  --with-http_gzip_static_module    enable ngx_http_gzip_static_module
  --with-http_auth_request_module    enable ngx_http_auth_request_module
  --with-http_random_index_module    enable ngx_http_random_index_module
  --with-http_secure_link_module    enable ngx_http_secure_link_module
  --with-http_degradation_module    enable ngx_http_degradation_module
  --with-http_slice_module          enable ngx_http_slice_module
  --with-http_stub_status_module    enable ngx_http_stub_status_module

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/7e5d26a30e912a29c09d59ee703179f1.html