在CentOS linux 正常配置tomcat7
啟動tomcat7,訪問位址為:
192.
192.168.1.208:8080下載nginx 相關版本,網址如下:http://nginx.org/en/download.html,個人使用的是nginx-1.6.2.tar.gz
. ure --with-http_stub_status_module --with-http_ssl_module
如果出現以下資訊表示配置安裝環境成功。
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'
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;
sendfile on; keepalive_timeout 65;
upstream 192.168.1.startupstream 192.168.1. ip_hash;server 192.168.1.207:8080 weight=1;
}
#end
c
以上就介紹了nginx + tomcat7 配置叢集環境,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。
#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/應用程式名稱