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
下一篇 2016-03-21

相關推薦

  • Linux文件權限之facl

    1、什么是facl         facl(file access control list)文件訪問控制列表,主要目的是在原有的u,g,o之外,另一層讓普通用戶能控制賦權給另外的用戶或組的機制;       &nbs…

    Linux干貨 2016-09-19
  • python面向對象

    ##**語言的分類**– 面向機器:匯編語言– 面向過程:c語言– 面向對象:C++ Java Python ##**面向對象**– 類class– 類是抽象的概念,萬事萬物的抽象,是一類事物的共同特征集合。– 對象instance object– 對象是類的具象,是一個實體…

    Linux干貨 2017-11-13
  • 了解Nginx

    Nginx Nginx是一款輕量級的Web 服務器/反向代理服務器及電子郵件(IMAP/POP3)代理服務器,并在一個BSD-like 協議下發行。由俄羅斯的程序設計師Igor Sysoev所開發,其特點是占有內存少,并發能力強,事實上nginx的并發能力確實在同類型的網頁服務器中表現較好,中國大陸使用nginx網站用戶有:百度、京東、新浪、網易、騰訊、淘寶…

    Linux干貨 2016-11-07
  • N25-Bazinga-第四周作業

    N25-Bazinga-第四周作業 1.復制/etc/ske1目錄為/home/tuser1,要求/home/tuser及其內部文件的屬組和其他用戶均沒有任何訪問權限。 [root@localhost ~]# cp -a /etc/skel/ /home/tuser1 [root@localhost&nbsp…

    Linux干貨 2016-12-21
  • N25-第一周博客作業

    1、描述計算機的組成及其功能:    沒有聽馬哥視頻之前,計算機的組成理解為主機+顯示器;    聽完視頻之后,對計算機的組成分為硬件系統和軟件系統。    硬件系統主要有:運算器、控制器、存儲器、輸入設備和輸出設備;    軟件系統主要有…

    Linux干貨 2016-12-04
  • 文本處理工具-2

    1、 sed 是一種行/流編輯器,它一次處理一行內容;處理時,把當前處理的行存儲在臨時緩沖區中,稱為“模式空間”(pattern space ),接著用sed 命令處理緩沖區中該行內容,處理完成后,把緩沖區的該行內容送往屏幕,接著處理下一行,這樣不斷重復,直到文件末尾。文件內容并沒有改變,除非你使用重定向存儲輸出,Sed 可以用來自動編輯一個或多個文件。 2…

    Linux干貨 2016-08-15

評論列表(1條)

  • stanley
    stanley 2016-03-20 12:01

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

欧美性久久久久