1. 程式人生 > >windows 下配置 Nginx 常見問題

windows 下配置 Nginx 常見問題

因為最近的專案需要用到負載均衡,不用考慮,當然用大名鼎鼎的Nginx啦。至於Nginx的介紹,這裡就不多說了,直接進入主題如何在Windows下配置。

我的系統是win7旗艦版的,到官網下載最新版本 nginx/Windows-1.7.9 解壓到英文目錄下(我剛開始是放到中文目錄下的,啟動時會有問題,下面常見錯誤裡會講到)。

一、  Nginx配置

找到 conf 目錄裡的 nginx.conf 檔案,配置Nginx

複製程式碼
#user  nobody;
#指定nginx程序數
worker_processes  1;

#全域性錯誤日誌及PID檔案
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

 
events {
    # 連線數上限
    worker_connections  1024;
}

#設定http伺服器,利用它的反向代理功能提供負載均衡支援
http {

    #設定mime型別,型別由mime.type檔案定義
    include       mime.types;
    default_type  application/octet-stream;
    #設定日誌格式
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #使用哪種格式的日誌
    #access_log  logs/access.log  main;

    #sendfile 指令指定 nginx 是否呼叫 sendfile 函式(zero copy 方式)來輸出檔案,對於普通應用,    
    sendfile        on;
    #tcp_nopush     on;

    #連線超時時間
    #keepalive_timeout  0;
    keepalive_timeout  65;

    #開啟gzip壓縮
    #gzip  on;



    #設定負載均衡的伺服器列表 支援多組的負載均衡,可以配置多個upstream  來服務於不同的Server.
    #nginx 的 upstream 支援 幾 種方式的分配 
    #1)、輪詢(預設) 每個請求按時間順序逐一分配到不同的後端伺服器,如果後端伺服器down掉,能自動剔除。 
    #2)、weight 指定輪詢機率,weight和訪問比率成正比,用於後端伺服器效能不均的情況。 跟上面樣,指定了權重。
    #3)、ip_hash 每個請求按訪問ip的hash結果分配,這樣每個訪客固定訪問一個後端伺服器,可以解決session的問題。 
    #4)、fair       
    #5)、url_hash #Urlhash
    upstream mysvr {
      #weigth引數表示權值,權值越高被分配到的機率越大   
      #1.down 表示單前的server暫時不參與負載
      #2.weight 預設為1.weight越大,負載的權重就越大。     
      #3.backup: 其它所有的非backup機器down或者忙的時候,請求backup機器。所以這臺機器壓力會最輕。  
      #server 192.168.1.116  down;
      #server 192.168.1.116  backup;
      server 192.168.1.121  weight=1;
      server 192.168.1.122  weight=2;
    }

    #配置代理伺服器的地址,即Nginx安裝的伺服器地址、監聽埠、預設地址
    server {
        #1.偵聽80埠 
        listen       80;

        #對於server_name,如果需要將多個域名的請求進行反向代理,可以配置多個server_name來滿足要求
        server_name  localhost;
        
        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            # 預設主頁目錄在nginx安裝目錄的html子目錄。
            root   html;
            index  index.html index.htm;           
            proxy_pass http://mysvr; #跟載均衡伺服器
的upstream對應 } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html ## 定義錯誤提示頁面 #error_page 500 502 503 504 /50x.html; #location = /50x.html { # root html; #} # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }
# another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

二、  啟動Nginx 

cmd 進入Nginx解壓目錄 執行 start nginx啟動Nginx服務

啟動後如何檢查是否啟動成功呢? 輸入命令 tasklist /fi "imagename eq nginx.exe"   看到以下資訊說明啟動成功了

一切就緒,訪問一下server 裡配置的 server_name 是不是被重定向到 upstream配置的伺服器上了,是不是很簡單!

三、常見錯誤

如果啟動失敗 可以看下logs目錄下 error.log 檔案裡的錯誤資訊。

我在第一次安裝的時遇到兩個錯誤,也是最容易碰到的問題,在這裡列出來方便大家碰到相同的問題時快速解決。

1.  端口占用問題

 我的配置檔案裡服務偵聽的是 80 埠,由於機器上部署了IIS,80埠被預設站點佔用,把站點關閉就可以了,這個問題在錯誤日誌裡記錄是這樣的。

2015/01/15 10:44:12 [emerg] 8800#5988: bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions)

碰到類似的錯誤,請確認埠是否被佔用或被防火牆遮蔽

2.Nginx所在目錄有中文

錯誤日誌大致輸出一下內容

2015/01/15 11:55:55 [emerg] 5664#8528: CreateFile() "E:\軟體\nginx-1.7.8/conf/nginx.conf" failed (1113: No mapping for the Unicode character exists in the target multi-byte code page)

3. 啟用快取時報錯

2015/01/15 17:26:50 [emerg] 17068#20356: shared zone "cache_one" has no equal addresses: 02CF0000 vs 02A20000
2015/01/15 17:26:50 [alert] 11536#11228: worker process 17068 exited with code 1

我一直沒有找到解決的方法,有人說重啟服務,或者快取設定大一點就可以了,我試了一下沒有用的,官網 原文是這樣講的,只能認為windwos下無解了。

: The cache and other modules which require shared memory support do 
: not work in Windows Vista and later due to address space layout 
: randomization being enabled in these Windows versions.