首頁 >後端開發 >php教程 >nginx + tomcat7 設定叢集環境

nginx + tomcat7 設定叢集環境

WBOY
WBOY原創
2016-08-08 09:31:211002瀏覽

在CentOS linux 正常配置tomcat7

啟動tomcat7,訪問位址為:

192.

192.168.1.208:8080

下載nginx 相關版本,網址如下:http://nginx.org/en/download.html,個人使用的是nginx-1.6.2.tar.gz

  • 將nginx 安裝檔案上傳至linux 伺服器。
  • 執行指令進行解壓縮:tar -zxvf nginx-1.6.2.tar.gz
  • 安裝nginx必須的相關套件指令:
  • vel
  • yum install gcc-c++
  • 設定nginx安裝環境:
  • 執行以下指令:

. ure --with-http_stub_status_module --with-http_ssl_module

如果出現以下資訊表示配置安裝環境成功。

  1.   nginx path prefix: "/usr/local/nginx"  nginx binary file: "/usr/local/nginx/sbin/nginx" nginx configuration inx configuration/cal configuration file: "/usr/local/nginx/conf/nginx.conf"  nginx pid file: "/usr/local/nginx/logs/nginx.pid"  nginx error log file: "/usr/localnginx/ logs/error.log"
  2.   nginx http access log file: "/usr/local/nginx/logs/access.log"
  3.   nginx http client request body temporary files: "client_body_temp"櫃 http nginx http fastcgi temporary files: "fastcgi_temp"  nginx http uwsgi temporary files: "uwsgi_temp"
  4.   nginx http scgi temporary files: "scgi_temp"
  nginx http scgi temporary files: "scgi_temp"

  nginx http scgi temporary files: "scgi_temp"g ake install

出現以下訊息表示安裝成功:





test -f '/usr/local/nginx/conf/nginx.conf'

|| cp conf/nginx.conf '/usr/local/nginx/
|| cp conf/nginx.conf '/usr/local/nginx/ /nginx.conf'
cp conf/nginx.conf '/usr/local/nginx/conf/nginx.conf.default'
test -d '/usr/local/nginx/logs'

|| mkdir -p ' /usr/local/nginx/logs'

test -d '/usr/local/nginx/logs' || mkdir -p '/usr/local/nginx/logs'

test -d '/usr/local/ nginx/html'

|| cp -R html '/usr/local/nginx'test -d '/usr/local/nginx/logs' ||

mkdir -p '/usr/local/nginx/logs '

make[1]: Leaving directory `/web/nginx-1.6.2'

啟動:/usr/local/nginx/sbin/nginx 關閉:/usr/local/nginx/bin
s stop

重啟nginx 服務:/usr/nginx/sbin/nginx -s reload

配置
執行指令:
vi /usr /local/nginx/sbin/nginx/conf/nginx.conf

修改為:

worker_processes  2;
events {}   worker_connections    mime.types;

    default_type  application/octet -stream;

    sendfile        on;    keepalive_timeout  65;

#start

upstream 192.168.1.startupstream 192.168.1. ip_hash;server 192.168.1.207:8080 weight=1;

server 192.168.1.208:8080 weight=1;

}

#end

    c


#end
    2  server_name  192.168.1.208;
        location / {
            root   html htm;
            #請求轉向mysvr 定義的伺服器清單


   proxy_pass http://192.168.1.208;🠎🜎🠎🜎時時間,必須留意這個time out時間不能超過75秒,當一台伺服器當掉時,過10秒轉送到另外一台伺服器。
   proxy_connect_timeout 10;
}
        error_page   500 502 503 504 html /50.             root   html;        }
    }}
保存退出。
啟動nginx服務,
訪問http://192.168.1.208/應用程式名稱

以上就介紹了nginx + tomcat7 配置叢集環境,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn