Nginx的編譯安裝
一、Nginx的特點
-
1、Nginx 專為性能優化而開發,性能是其最重要的考量,實現上非常注重效率 。它支持內核 Poll 模型,能經受高負載的考驗,有報告表明能支持高達 50,000 個并發連接數。
-
2、Nginx 具有很高的穩定性,Nginx 采取了分階段資源分配技術,使得它的 CPU 與內存占用率非常低。
-
3、Nginx 代碼質量非常高,代碼很規范,手法成熟,模塊擴展也很容易。
-
4、Nginx 還可以實現無緩存的反向代理加速,簡單的負載均衡和容錯。
二、獲取并編譯Nginx
-
首先去Nginx的官方網站獲取源碼包文件http://nginx.org/en/download.html,這里我選擇是最新的版本
nginx-1.9.12
,當然如果是生產環境還是建議大家使用穩定版的較好,最新的穩定版現在應該是nginx-1.8.1
。 -
在下載源碼包并編譯之前,先安裝好開發環境:
[root@code ~]# yum install pcre-devel openssl-devel -y 使nginx支持正則表達式及https加密
[root@code ~]# yum groupinstall “Desktop Platform Development” “Development tools” -y 開發包 -
編譯安裝:
[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 編譯并安裝
三、配置主頁面
-
下面是編譯后生成的所有文件:
/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
└── nginxnginx主程序
-
下面我們來編譯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端口已經啟動 -
測試頁面是否能正常訪問:
[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
難得好文章,終于看到一篇可以置頂的好文