本篇文章只是介紹簡單的Nginx+Tomcat+Memcached配置及所需環境,沒有詳細介紹各項解釋及優化配置,按照以下陪能夠實現負載均衡,對於初學者來講上手很快,不會一頭霧水,加強信心是有幫助的,至於更多更深層次的內容我後面會慢慢介紹更新,同時也但願讀者私下裏慢慢研究,共同研究進步,固然有這方經驗的大牛能夠關注下私聊,再下還有些問題請教,謝謝。。。php
Nginx+Tomcat+Memcached實現tomcat集羣和session共享
有時候服務器須要處理更大的併發量則須要更多的nginx來做爲代理轉發並須要更多的tomcat節點(固然也有牛人能把tomcat配到數千併發量,這樣也不必定須要太多tomcat)css
1. nginx環境html
1.1下載nginx服務包,在此我使用的是nginx-1.2.9java
主要配置conf目錄下的配置文件和使用nginx.exe的服務。linux
在cmd中進入nginx.exe所在的目錄,nginx
輸入:start nginx啓動nginx服務;web
nginx –s quit或nginx –s stop 中止nginx服務;後端
nginx –s reload刷新nginx的配置文件。瀏覽器
啓動nginx沒反應,要在任務管理器-進程中查看是否啓動。緩存
1.2配置
找到nginx的安裝目錄:ngin1. 1.2.9/conf/conf文件
nginx.conf文件是nginx的核心配置文件。
本人配置以下:三個tomcat
#運行用戶
#user nobody;
#開啓進程數 <=CPU數
worker_processes 2;
#錯誤日誌保存位置
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#進程號保存文件
#pid logs/nginx.pid;
#工做模式及鏈接數上限
events {
#epoll是多路複用IO(I/O Multiplexing)中的一種方式,
#僅用於linux2.6以上內核,能夠大大提升nginx的性能
#use epoll;
#每一個進程最大鏈接數(最大鏈接=鏈接數x進程數)
#每一個進程最大鏈接數(最大鏈接=鏈接數x進程數)
#單個後臺worker process進程的最大併發連接數
worker_connections 1024;
# 併發總數是 worker_processes 和 worker_connections 的乘積
# 即 max_clients = worker_processes * worker_connections
# 在設置了反向代理的狀況下,max_clients = worker_processes * worker_connections / 4 爲 #什麼
# 爲何上面反向代理要除以4,應該說是一個經驗值
# 根據以上條件,正常狀況下的Nginx Server能夠應付的最大鏈接數爲:4 * 8000 = 32000
# worker_connections 值的設置跟物理內存大小有關
# 由於併發受IO約束,max_clients的值須小於系統能夠打開的最大文件數
# 而系統能夠打開的最大文件數和內存大小成正比,通常1GB內存的機器上能夠打開的文件數大約是10萬左右
# 咱們來看看360M內存的VPS能夠打開的文件句柄數是多少:
# $ cat /proc/sys/fs/file-max
# 輸出 34336
# 32000 < 34336,即併發鏈接總數小於系統能夠打開的文件句柄總數,這樣就在操做系統能夠承受的範圍以內
# 因此,worker_connections 的值需根據 worker_processes 進程數目和系統能夠打開的最大文件總數進行適當地進行設置
# 使得併發總數小於操做系統能夠打開的最大文件數目
# 其實質也就是根據主機的物理CPU和內存進行配置
# 固然,理論上的併發總數可能會和實際有所誤差,由於主機還有其餘的工做進程須要消耗系統資源。
# ulimit -SHn 65535
}
http {
#文件擴展名與文件類型映射表
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;
#設定請求緩衝
client_header_buffer_size 1k;
large_client_header_buffers 4 4k;
#打開發送文件
#sendfile 指令指定 nginx 是否調用 sendfile 函數(zero copy 方式)來輸出文件,
#對於普通應用,必須設爲 on,
#若是用來進行下載等應用磁盤IO重負載應用,可設置爲 off,
#以平衡磁盤與網絡I/O處理速度,下降系統的uptime.
sendfile on;
#tcp_nopush on;
#鏈接超時時間
#keepalive_timeout 0;
keepalive_timeout 65;
#客戶端上傳文件大小控制
client_max_body_size 8m;
#打開gzip壓縮
#gzip on;
#設定負載均衡的服務器列表
upstream tomcatBalance{
server 127.0.0.1:7002 ;#第一臺機器
server 127.0.0.1:7004 ;#第二臺機器
server 127.0.0.1:7008 ;#第三臺機器
}
#第一個虛擬主機
server {
listen 80;#監聽IP端口
server_name localhost; #主機名#定義使用 localhost訪問
#設置字符集
#charset koi8-r;
#本虛擬server的訪問日誌 至關於局部變量
#access_log logs/host.access.log main;
#日誌文件輸出格式
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
location / {
root html;
index index.html index.htm;#定義首頁索引文件的名稱
#請求轉發向真實服務器IP
proxy_pass http://tomcatBalance;
#15秒超時
proxy_connect_timeout 15;
}
#靜態文件緩存時間設置 #靜態文件,nginx本身處理
#location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)${
# expires 30d;
#}
#過時30天,靜態文件不怎麼更新,過時能夠設大一點,
#若是頻繁更新,則能夠設置得小一點。
#靜態文件緩存時間設置
#location ~ .*\.(js|css)?${
# expires 1h;
#}
#對本server"/"啓用負載均衡
#location / {
# proxy_pass http://mysvr;
# proxy_redirect off;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# client_max_body_size 10m; //容許客戶端請求的最大單文件字節數
# client_body_buffer_size 128k; //緩衝區代理緩衝用戶端請求的最大字節數
# proxy_connect_timeout 90; /nginx跟後端服務器鏈接超時時間
# proxy_send_timeout 90; //鏈接成功後,後端服務器響應時間
# proxy_read_timeout 90;
# proxy_buffer_size 4k; //設置代理服務器(nginx)保存用戶頭信息的緩衝區大小
# proxy_buffers 4 32k; //proxy_buffers緩衝區,網頁平均在32k如下的話,這樣設置
# proxy_busy_buffers_size 64k; //高負荷下緩衝大小(proxy_buffers*2)
# proxy_temp_file_write_size 64k; //設定緩存文件夾大小,大於這個值,將從upstream服務器傳
#}
#設定查看Nginx狀態的地址
#location /NginxStatus {
# stub_status on;
# access_log on;
# auth_basic 「NginxStatus」;
# auth_basic_user_file conf/htpasswd;
#}
#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;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
1. msm環境
1.1 安裝
下載memcached服務及安裝包,我用的是memcached-1.2.6,解壓啓動memcached.exe,默認端口11211,而後再服務中查看,沒什麼好說的。
2.2下載memcached session共享tomcat會話所須要的jar包(注:本人使用的是javolution序列化方式,所須要的jar包以下)
javolution-5.4.3.1.jar,memcached-2.5.jar,memcached-session-manager-1.3.0.jar,msm-javolution-serializer-1.3.0.jar,msm-javolution-serializer-cglib-1.3.0.jar,msm-javolution-serializer-jodatime-1.3.0.jar ,memcached-session-manager-tc6-1.6.3.jar
2. tomcat配置
3.1.須要幾個tomcat節點,複製幾份tomcat;
3.2.把上面2.2的jar包放在每一個tomcat的lib下面;
3.3.修改tomcat端口,tomcat\conf\server.xml中,修改以下三個位置端口號,確保每一個tomcat的端口不衝突及沒有被機器其餘程序佔用:<Server port="8009" shutdown="SHUTDOWN">;
<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
enableLookups="false"
redirectPort="8443"
URIEncoding="UTF-8"
acceptCount="200"
compression="on"/>
3.4.一樣在\conf\server.xml中,添加啓動的項目,以下:<Context path="" docBase="D:\lianxi\webMember\WebRoot" reloadable="true" crossContext="true">
</Context>,本人隨便找個javaweb項目,每一個tomcat都添加啓動項,而後能訪問就行。
3.5. 關鍵一步,找到tomcat\conf\context.xml文件,在
<context>
<Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager"
memcachedNodes="n2:localhost:11211"
requestUriIgnorePattern=".*/.(png|gif|jpg|css|js)$"
sessionBackupAsync="false"
sessionBackupTimeout="100"
transcoderFactoryClass="de.javakaffee.web.msm.serializer.javolution.JavolutionTranscoderFactory"
copyCollectionsForSerialization="false"/>
</context>添加中間代碼。
3.6.爲了區分各個tomcat,最好修改下啓動tomcat的名稱,在tomcat\bin\ catalina.bat中找到相似這段代碼,改動Tomcat部分
set _EXECJAVA=start "Tomcat" %_RUNJAVA%
3.7.在tomcat\conf\server.xml中找到
<Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1"> 添加jvm1部分,確保每一個tomcat的jvmRoute名字不同。
4.最後,若是項目均可以部署起來,在項目登錄頁,添加一段腳本如:<%System.out.print("tomcat1")%>在瀏覽器輸入localhost就能夠在每一個tomcat中看輸出。