Nginx的編譯安裝

nginx.html

Nginx的編譯安裝

一、Nginx的特點

  • 1、Nginx 專為性能優化而開發,性能是其最重要的考量,實現上非常注重效率 。它支持內核 Poll 模型,能經受高負載的考驗,有報告表明能支持高達 50,000 個并發連接數。

  • 2、Nginx 具有很高的穩定性,Nginx 采取了分階段資源分配技術,使得它的 CPU 與內存占用率非常低。

  • 3、Nginx 代碼質量非常高,代碼很規范,手法成熟,模塊擴展也很容易。

  • 4、Nginx 還可以實現無緩存的反向代理加速,簡單的負載均衡和容錯。

二、獲取并編譯Nginx

  1. 首先去Nginx的官方網站獲取源碼包文件http://nginx.org/en/download.html,這里我選擇是最新的版本nginx-1.9.12,當然如果是生產環境還是建議大家使用穩定版的較好,最新的穩定版現在應該是nginx-1.8.1。

  2. 在下載源碼包并編譯之前,先安裝好開發環境:

    [root@code ~]# yum install pcre-devel openssl-devel -y 使nginx支持正則表達式及https加密
    [root@code ~]# yum groupinstall “Desktop Platform Development” “Development tools” -y 開發包

  3. 編譯安裝:

    [root@code ~]# groupadd -r nginx 創建系統組nginx
    [root@code ~]# useradd -g nginx -s /sbin/nologin -r nginx 創建用戶nginx并添加進nginx組
    [root@code ~]# yum install wget -y 安裝wget工具
    [root@code ~]# wget http://nginx.org/download/nginx-1.9.12.tar.gz  下載源碼包到本地
    [root@code ~]# tar xf nginx-1.9.12.tar.gz 解壓源碼包
    [root@code ~]# cd nginx-1.9.12
    [root@code nginx-1.9.12]# mkdir -pv /data/logs/nginx 創建ngnix日志目錄
    [root@code nginx-1.9.12]# ./configure —prefix=/usr/local/nginx —user=nginx —group=nginx —with-http_ssl_module  —with-http_image_filter_module —with-http_gzip_static_module —with-http_gunzip_module —with-http_stub_status_module —http-log-path=/data/logs/nginx/access.log —error-log-path=/data/logs/nginx/error.log 配置出編譯文件,其中的編譯選項我會在文章后面列出
    [root@code nginx-1.9.12]# make & make install 編譯并安裝

三、配置主頁面

  1. 下面是編譯后生成的所有文件:

    /usr/local/nginx/
    ├── conf
    │   ├── fastcgi.conf
    │   ├── fastcgi.conf.default
    │   ├── fastcgi_params
    │   ├── fastcgi_params.default
    │   ├── koi-utf
    │   ├── koi-win
    │   ├── mime.types
    │   ├── mime.types.default
    │   ├── nginx.conf 主配置文件
    │   ├── nginx.conf.default
    │   ├── scgi_params
    │   ├── scgi_params.default
    │   ├── uwsgi_params
    │   ├── uwsgi_params.default
    │   └── win-utf
    ├── html 網站根目錄
    │   ├── 50x.html
    │   └── index.html
    ├── logs
    └── sbin
          └── nginx nginx主程序

  2. 下面我們來編譯Nginx的主頁文件:vim /usr/local/nginx/html/index.html

    <h1>Welcome!</h1>
    <h2>This is Nginx site</h2>

    將主頁文件修改為以上內容,保存后啟動nginx服務

    [root@code ~]# /usr/local/nginx/sbin/nginx 沒有報錯就是啟動正常
    [root@code ~]# ss -tnl | grep “80” 查看80端口是否已經啟動
    LISTEN   0   128   :80   :*  ##80端口已經啟動

  3. 測試頁面是否能正常訪問:

    [root@code ~]# curl http://192.168.10.1
    <h1>Welcome!</h1>
    <h2>This is Nginx site</h2>

    輸出以上信息表示能夠正常訪問。
    此篇博客僅僅是介紹如何編譯Nginx的,如何編寫SysV風格的服務腳本,配置文件的參數及如何修改會在下篇博客中寫出。

    四、配置編譯文件時的選項及模塊

    [root@code nginx-1.9.12]# ./configure --help
    
    --help                             print this message       #顯示幫助信息
    
    --prefix=PATH                      set installation prefix       #安裝路徑
    --sbin-path=PATH                   set nginx binary pathname       #主進程安裝到哪個路徑
    --modules-path=PATH                set modules path
    --conf-path=PATH                   set nginx.conf pathname       #配置文件路徑
    --error-log-path=PATH              set error log pathname       #錯誤日志路徑
    --pid-path=PATH                    set nginx.pid pathname       #pdi文件路徑
    --lock-path=PATH                   set nginx.lock pathname       #鎖文件路徑
    
    --user=USER                        set non-privileged user for       #啟動程序的用戶
                                      worker processes
    --group=GROUP                      set non-privileged group for       #啟動程序的組
                                      worker processes
    
    --build=NAME                       set build name
    --builddir=DIR                     set build directory
    
    --with-select_module               enable select module       #select I/O模型
    --without-select_module            disable select module
    --with-poll_module                 enable poll module       #poll I/O模型
    --without-poll_module              disable poll module
    
    --with-threads                     enable thread pool support       #線程池
    
    --with-file-aio                    enable file AIO support       #異步I/O
    --with-ipv6                        enable IPv6 support       #IPV6
    
    --with-http_ssl_module             enable ngx_http_ssl_module       #https
    --with-http_v2_module              enable ngx_http_v2_module       #http 2.0協議
    --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       #mp4支持
    --with-http_gunzip_module          enable ngx_http_gunzip_module
    --with-http_gzip_static_module     enable ngx_http_gzip_static_module       #gzip壓縮
    --with-http_auth_request_module    enable ngx_http_auth_request_module       #HTTP基本認證
    --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_modulee       #狀態監控
    
    --without-http_charset_module      disable ngx_http_charset_module
    --without-http_gzip_module         disable ngx_http_gzip_module
    --without-http_ssi_module          disable ngx_http_ssi_module
    --without-http_userid_module       disable ngx_http_userid_module
    --without-http_access_module       disable ngx_http_access_module
    --without-http_auth_basic_module   disable ngx_http_auth_basic_module
    --without-http_autoindex_module    disable ngx_http_autoindex_module
    --without-http_geo_module          disable ngx_http_geo_module
    --without-http_map_module          disable ngx_http_map_module
    --without-http_split_clients_module disable ngx_http_split_clients_module
    --without-http_referer_module      disable ngx_http_referer_module
    --without-http_rewrite_module      disable ngx_http_rewrite_module
    --without-http_proxy_module        disable ngx_http_proxy_module
    --without-http_fastcgi_module      disable ngx_http_fastcgi_module
    --without-http_uwsgi_module        disable ngx_http_uwsgi_module
    --without-http_scgi_module         disable ngx_http_scgi_module
    --without-http_memcached_module    disable ngx_http_memcached_module
    --without-http_limit_conn_module   disable ngx_http_limit_conn_module
    --without-http_limit_req_module    disable ngx_http_limit_req_module
    --without-http_empty_gif_module    disable ngx_http_empty_gif_module
    --without-http_browser_module      disable ngx_http_browser_module
    --without-http_upstream_hash_module
                                      disable ngx_http_upstream_hash_module
    --without-http_upstream_ip_hash_module
                                      disable ngx_http_upstream_ip_hash_module
    --without-http_upstream_least_conn_module
                                      disable ngx_http_upstream_least_conn_module
    --without-http_upstream_keepalive_module
                                      disable ngx_http_upstream_keepalive_module
    --without-http_upstream_zone_module
                                      disable ngx_http_upstream_zone_module
    
    --with-http_perl_module            enable ngx_http_perl_module
    --with-perl_modules_path=PATH      set Perl modules path
    --with-perl=PATH                   set perl binary pathname
    
    --http-log-path=PATH               set http access log pathnamee       #正常日志文件路徑
    --http-client-body-temp-path=PATH  set path to store
                                      http client request body temporary files
    --http-proxy-temp-path=PATH        set path to store
                                      http proxy temporary files
    --http-fastcgi-temp-path=PATH      set path to store
                                      http fastcgi temporary files
    --http-uwsgi-temp-path=PATH        set path to store
                                      http uwsgi temporary files
    --http-scgi-temp-path=PATH         set path to store
                                      http scgi temporary files
    
    --without-http                     disable HTTP server
    --without-http-cache               disable HTTP cache
    
    --with-mail                        enable POP3/IMAP4/SMTP proxy modulee       #郵件代理
    --with-mail=dynamic                enable dynamic POP3/IMAP4/SMTP proxy module
    --with-mail_ssl_module             enable ngx_mail_ssl_modulee       #支持ssl的郵件代理
    --without-mail_pop3_module         disable ngx_mail_pop3_module
    --without-mail_imap_module         disable ngx_mail_imap_module
    --without-mail_smtp_module         disable ngx_mail_smtp_module
    
    --with-stream                      enable TCP proxy modulee       #TCP代理
    --with-stream=dynamic              enable dynamic TCP proxy module
    --with-stream_ssl_module           enable ngx_stream_ssl_module
    --without-stream_limit_conn_module disable ngx_stream_limit_conn_module
    --without-stream_access_module     disable ngx_stream_access_module
    --without-stream_upstream_hash_module
                                      disable ngx_stream_upstream_hash_module
    --without-stream_upstream_least_conn_module
                                      disable ngx_stream_upstream_least_conn_module
    --without-stream_upstream_zone_module
                                      disable ngx_stream_upstream_zone_module
    
    --with-google_perftools_module     enable ngx_google_perftools_module       #google性能分析套件
    --with-cpp_test_module             enable ngx_cpp_test_module
    
    --add-module=PATH                  enable external module       #添加第三方模塊
    --add-dynamic-module=PATH          enable dynamic external module
    
    --with-cc=PATH                     set C compiler pathname
    --with-cpp=PATH                    set C preprocessor pathname
    --with-cc-opt=OPTIONS              set additional C compiler options
    --with-ld-opt=OPTIONS              set additional linker options
    --with-cpu-opt=CPU                 build for the specified CPU, valid values:
                                      pentium, pentiumpro, pentium3, pentium4,
                                      athlon, opteron, sparc32, sparc64, ppc64
    
    --without-pcre                     disable PCRE library usage
    --with-pcre                        force PCRE library usage
    --with-pcre=DIR                    set path to PCRE library sources
    --with-pcre-opt=OPTIONS            set additional build options for PCRE
    --with-pcre-jit                    build PCRE with JIT compilation support
    
    --with-md5=DIR                     set path to md5 library sources
    --with-md5-opt=OPTIONS             set additional build options for md5
    --with-md5-asm                     use md5 assembler sources
    
    --with-sha1=DIR                    set path to sha1 library sources
    --with-sha1-opt=OPTIONS            set additional build options for sha1
    --with-sha1-asm                    use sha1 assembler sources
    
    --with-zlib=DIR                    set path to zlib library sources
    --with-zlib-opt=OPTIONS            set additional build options for zlib
    --with-zlib-asm=CPU                use zlib assembler sources optimized
                                      for the specified CPU, valid values:
                                      pentium, pentiumpro
    
    --with-libatomic                   force libatomic_ops library usage
    --with-libatomic=DIR               set path to libatomic_ops library sources
    
    --with-openssl=DIR                 set path to OpenSSL library sources
    --with-openssl-opt=OPTIONS         set additional build options for OpenSSL
    
    --with-debug                       enable debug logging

    簡單標注出幾個常用的選項及模塊信息,想了解的可以查看:官方文檔,或訪問Nginx中文參考手冊,教程

原創文章,作者:張小凡,如若轉載,請注明出處:http://www.www58058.com/12984

(0)
張小凡張小凡
上一篇 2016-03-20 12:00
下一篇 2016-03-21 20:48

相關推薦

  • 初識Linux-即使是997也不能停止學習

    1.計算機的組成及其功能:    從1946年第一臺通用計算機ENIAC誕生至今,幾乎所有的計算機系統都是建立在馮諾依曼體系結構上的。那么何為馮諾依曼體系結構? 馮諾依曼體系結構:        控制器:是整個計算機的中樞,負責計算機的整體調度工作,將指令從存儲器中取出,并對指令進行解釋執行。 &n…

    Linux干貨 2016-10-29
  • linux 文件管理類命令及功能用法

    第一題:Linux上的文件管理類命令都有哪些,其常用的使用方法及相關示例演示。 文件管理類的命令有: cd,ls,touch,mldir,cp,mv,rm,rmdir,pwd,tree 使用方法 (1),cd命令用來切換工作目錄至dirname。其中dirName表示法可為絕對路徑或相對路徑。 常用格式: cd #進入用戶家目錄 cd~ #進入用戶家目錄 c…

    Linux干貨 2017-07-09
  • 手動編譯內核+busybox+dropbear+nginx

    我們需要先在宿主機上添加一個磁盤,然后,把這個磁盤做好分區和文件系統: fdisk /dev/sdb 創建第一個分區: n p 1 +512M 創建第二個分區: n p 2 +10G 保存退出: w 為分區提供文件系統: kpartx /dev/sdb 為分區提供文件系統: mke2fs -t ext4 /dev/sd…

    Linux干貨 2015-09-24
  • 系統基礎之shell腳本編程詳解4(數組及字符串處理,變量賦值和配置文件)

    系統基礎之shell腳本編程詳解4(數組及字符串處理,變量賦值和配置文件)     今天來講shell腳本編程的最后一些內容,數組及字符串處理,變量賦值和配置文件.這些內容也是我們經常在工作中使用到的知識點.下面讓我們來詳細了解下: 數組:   程序=指令+數據        &…

    Linux干貨 2016-08-24
  • 網絡管理之配置靜態ip和多網卡綁定

    不知怎的,這幾天教室的網絡異常詭異,各種不穩定啊。原先小編都是通過自動獲?。╠hcp)的方式來進行網絡連接的,現在這種網絡情況下需要(static)的方式來配置一個固定的ip。步驟如下: 一、在終端中輸入:vim /etc/sysconfig/network-scripts/ifcfg-eth0 二、進行編輯并保存退出 三、重啟網絡服務:service ne…

    2017-09-10
  • iptables之nat

    NAT網絡地址轉換SNAT:修改IP報文中的源IP地址 本地向互聯網請求讓本地網絡中的主機可使用統一地址與外部通信,從而實現地址偽裝請求:修改源IP,如果修改則由光梨園定義響應:修改目標IP,由nat自動根據會話表中追蹤機制實現相應修改DNAT:修改目標地址轉換 外網服務器向其他客戶端請求請求:由外網主機發起,修改其目標地址,由管理員定義相應:修改源地址,但…

    2017-11-12

評論列表(1條)

  • stanley
    stanley 2016-03-20 12:01

    難得好文章,終于看到一篇可以置頂的好文

欧美性久久久久