負載均衡及會話保存(Ofbiz框架)

第一步 、配置varnish css


1.       Config the startup file  ,edit the file 「varnishd_xxx.bat 」 in folder 「bin」 , the file name can be anything you want, you can create a new file if the file don’t exsit. html

The content of the file is like : java

e: web

cd e:\soft\varnish-3.0.2\bin 算法

set PATH=%CD%;%PATH% tomcat

varnishd -a :80 -T :8888 -f /etc/eric.vcl -s malloc,500M 服務器

pause session


top three lines config the path of varnish , then congfig the varnish startup property memcached

-f /etc/eric.vcl  測試

表示varnish當前使用的配置文件

 

-s malloc,500M

表示給varnish分配500M內存存儲空間

-T :8888

varnish 管理界面端口


-a :80

varnish監聽80端口


2.  Edit the configuration file for varnish

Edit the file 「/etc/eric.vcl」 which set in the startup file, the content is like:

# This is a basic VCL configuration file for varnish.  See the vcl(7)

# man page for details on VCL syntax and semantics.

#

# Default backend definition.  Set this to point to your content

# server.

# 配置輪詢的服務器信息

backend web01 { 

               .host = "127.0.0.1"; 

               .port = "8080";

                       

backend web02 { 

               .host = "10.221.133.10"; 

               .port = "8080"; 

 

backend web03 { 

               .host = "10.221.133.16"; 

               .port = "8080"; 


}  

director load round-robin { 

       { 

               .backend = web01; 

       } 

       { 

               .backend = web02; 

       } 

       { 

               .backend = web03; 

       } 

#若是varnish服務器接收到的訪問請求是localhost,那麼就將這個訪問請求轉發到load組,並利用RR算法對load組內的服務器進行輪詢訪問。

sub vcl_recv { 

               if (req.http.host ~ "localhost") { 

                       set req.backend=load; 

               } 

 

sub vcl_fetch { 

               set beresp.ttl=30s; 

               return (deliver); 

sub vcl_recv { 

               if ( (req.request=="GET" || req.request=="HEAD") && req.url ~ "\.(png|gif|jpeg|swf|css|js|html)$"){ 

                       return (lookup); 

               } 

               else { 

               return (pass); 

               } 

sub vcl_deliver { 

               if (obj.hits>0) { 

                       set resp.http.X-Cache="HIT"; 

               } 

               else { 

                       set resp.http.X-Caceh="MISS"; 

               } 

#acl purge_acl { 

#               "localhost"; 

#} 

#sub vcl_recv { 

#               if (req.request=="PURGE") { 

#                             if ( ! client.ip ~ purge_acl) { 

#                             error 405 "Not Allow!"; 

#                             } 

#               purge_url (req.url); 

#               error 200 "Purged"; 

#               } 

#}


3.       Run the  「「varnishd_xxx.bat 」 and visit 「localhost」, you can see the project ,if one server down , varnish will visit another server in the list. 

第二步、給tomcat配置memcached



一、一、 startup memcached.exe,use telnet to test port.         

二、put java_memcached-release_1.5.1.jar,tomcatmemsession.jar and commons-logging.jar  to the lib folder of tomcat.

三、三、 Modify the contex.xml in the conf folder as below,

<Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager" memcachedNodes="n1:xxx.xxxx.xxxx.xxx:11211"> 

</Manager>


第三步、將ofbiz配置到外部tomcat上(ofbiz原來自帶的內部的tomcat)

1.Generate configuration files

Using command 「java –jar ofbiz.jar –setup tomcat6」 under ofbiz home directory, the configuration files will be generated in setup directory

2.Replace the same files in tomcat with generated file

In catalina.bat, delete the 「%JAVA_OPTS%」 in 「set java_opts=%JAVA_OPTS% -Djava.xxxxxx」

Add -Dfile.encoding=UTF-8 for displaying Chinese character.

In catalina.properties , change ‘f://’  to  ‘f:////’.

3.Start catalina

Using Catalina run in command line

第四部、開啓ofbiz並測試

一、 Start  ofbiz on PC1(IP:10.158.121.11)  and PC2(IP:10.158.121.12)  ,and memcached was deployed on PC2, varnish deployed on PC1.

PC1 varnish configuration:

backend web01 { 

               .host = "10.158.121.11";  //PC1

               .port = "8080";

                       

backend web02 { 

               .host = "10.158.121.12";  //PC2

               .port = "8080"; 

 

PC1 and PC2 memcached for tomcat configuration:

<Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager" memcachedNodes="n1: 10.158.121.12:11211"> 

    </Manager>


二、 Login and Add  a shopping to shopping cart  on PC1 and shutdown the tomcat on PC1.

三、 Continue to view web on PC1 ,you will find the session was stored and you can continue shopping. 

相關文章
相關標籤/搜索