標籤:manage rtt exp color 技術分享 tran bsp upm modules
Apache + tomcat實現server叢集
主要參照:http://blog.csdn.net/welun521/article/details/4169879
採用JK_PROXY方式實現。興許會研究ajp方式。也會出文檔。待續……!
一、apache安裝
主要參照:http://llying.iteye.com/blog/335342
註:以上輸入必須按給的格式。郵箱最好輸入一個可用的。我在第一次安裝的時候就是沒按格式輸入,結果不能啟動,僅僅好卸了重裝,應該是能夠改動的,但沒研究^-^!
二、tomcat安裝
略
三、apache配置
註:改動httpd.conf時,最好用記事本開啟。不要用別的edit工具!
這是配置後的conf檔案夾,在apache配置時,特別注意,首先給httpd.conf做個備份,由於在配置的過程中發現一些非常怪異的現象。無緣無故就不能用了!最發做好備份,萬一配置錯誤起碼能恢複到最初狀態,這個應該是一個各格程式猿的基本涵養吧^_^!
以下開始具體配置:
1、 將mod_jk-1.2.26-httpd-2.2.4.so在Apache2/modules檔案夾下
2、 建立mod_jk.conf檔案,內容例如以下:
#載入mod_jk Module LoadModule jk_module modules/mod_jk-1.2.26-httpd-2.2.4.so #指定 workers.properties檔案路徑 JkWorkersFile conf/workers.properties #指定那些請求交給tomcat處理,"controller"為在workers.propertise裡指定的負載分配控制器 JkMount /*.jsp controller #假設還要指定*.do也進行分流就再加一行#JkMount /*.do controller#假設你想對全部的請求進行分流僅僅須要寫成JkMount /* controller
註:有用過程中最好把凝視性的漢字去掉,防止出錯!(不須要的使用者“#”凝視掉)
事實上不加這個檔案也能實現。只是須要在httpd.conf中配置,為不影響原檔案,就再加個吧!
有了這個檔案後。我們僅僅須要在httpd.conf中加上:
Include conf/mod_jk.conf
就能夠了。有些說加到檔案最後,但我還是習慣放在有Include標籤的後面,這個隨便哈!
3、 在conf下加入work.properties檔案。內容例如以下:
worker.list =controller,tomcat1,tomcat2 #server 列表 #========tomcat1======== worker.tomcat1.port=8009 #ajp13連接埠號碼。在tomcat下server.xml配置,預設8009 worker.tomcat1.host=localhost #tomcat的主機地址。如不為本機,請填寫ip地址 worker.tomcat1.type=ajp13 worker.tomcat1.lbfactor = 1 #server的加權比重,值越高。分得的請求越多 #========tomcat2======== worker.tomcat2.port=8109 #ajp13連接埠號碼,在tomcat下server.xml配置,預設8009 worker.tomcat2.host=localhost #tomcat的主機地址。如不為本機,請填寫ip地址 worker.tomcat2.type=ajp13 worker.tomcat2.lbfactor = 2 #server的加權比重。值越高,分得的請求越多 #========controller,負載平衡控制器======== worker.controller.type=lb worker.controller.balanced_workers=tomcat1,tomcat2 #指定分擔請求的tomcat worker.controller.sticky_session=1
以上配置都非常明白。假設還想加入tomcat。按上面配置加入就可以。
四、Tomcta配置
Tomcata配置並無特別之處,基本的是要是在同一台機器上配置不同tomcat時須要注意的是要將第二個tomcat的port號改動下,不要與第一個衝突,不然無法啟動!
在session共用時,須要加入例如以下配置,在tomcat的server.xml中並沒有這麼多,這是在網上查的,只是,已經測試過,能夠正常使用!
配置例如以下:
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"channelSendOptions="6"> <Manager className="org.apache.catalina.ha.session.BackupManager"expireSessionsOnShutdown="false"notifyListenersOnReplication="true"mapSendOptions="6"/> <Channel className="org.apache.catalina.tribes.group.GroupChannel"> <Membership className="org.apache.catalina.tribes.membership.McastService"address="228.0.0.4" port="45564" frequency="500"dropTime="3000"/> <Receiver className="org.apache.catalina.tribes.transport.nio.NioReceiver" address="auto" <span style="color:#ff0000;">port="4001"</span>selectorTimeout="100"maxThreads="6"/> <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter"> <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"/> </Sender> <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/> <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor"/> <Interceptor className="org.apache.catalina.tribes.group.interceptors.ThroughputInterceptor"/> </Channel> <Valve className="org.apache.catalina.ha.tcp.ReplicationValve"filter=".*\.gif|.*\.js|.*\.jpeg|.*\.jpg|.*\.png|.*\.htm|.*\.html|.*\.css|.*\.txt"/> <Deployer className="org.apache.catalina.ha.deploy.FarmWarDeployer"tempDir="/tmp/war-temp/" deployDir="/tmp/war-deploy/"watchDir="/tmp/war-listen/" watchEnabled="false"/> <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/> </Cluster>
紅色部分須要注意下,兩個tomcat不要反覆,其他不用改動。
如此。就能實現session共用。
五、測試項目
tomcat1中index.jsp內容例如以下:
<%@ page language="java"contentType="text/html; charset=utf-8" pageEncoding="utf-8"%><%@ pagesession="false"%><!DOCTYPE htmlPUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type" content="text/html;charset=ISO-8859-1"><title>Inserttitle here</title></head><body> This is my JSP page.tomcat-A <br> <% HttpSessionmysession = request.getSession(false); if (mysession ==null) { mysession= request.getSession(true); mysession.setAttribute("appname","value-A"); out.println("newsession:" + mysession.getId()); } else { out.println("oldsession:" + mysession.getId()); } out.println("appname="+ mysession.getAttribute("appname")); System.out.println("1111111111111111111111111111111111111111111111111111"); %> </body></html>
tomcat2下的index.jsp內容例如以下:
<%@ pagelanguage="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%><%@ pagesession="false"%><!DOCTYPE htmlPUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type" content="text/html;charset=ISO-8859-1"><title>Inserttitle here</title></head><body> This is my JSP page.tomcat-B <br> <% HttpSessionmysession = request.getSession(false); if (mysession ==null) { mysession= request.getSession(true); mysession.setAttribute("appname","value-B"); out.println("newsession:" + mysession.getId()); } else { out.println("oldsession:" + mysession.getId()); } out.println("appname="+ mysession.getAttribute("appname")); System.out.println("22222222222222222222222222222222222222222222222222"); %> </body></html>
最後測試結果:
頁面效果:
注意這幾個點!
jk_proxy實現apache+tomcat負載平衡