Version 15.1 by Jerome on 2011/06/17

Hide last authors
Thomas Mortagne 4.1 1 {{warning}}
2 This tutorial is a simple way to setup a XWiki clustering for test purpose.
3 {{/warning}}
Thomas Mortagne 1.1 4
5 The goal of a cluster of XWiki instance is to provide several XWiki in different servers accessing the same database server to be able to do load balancing.
6
Thomas Mortagne 5.1 7 = Install two instances of XWiki on the same MySQL database =
Thomas Mortagne 1.1 8
9 Here we will use the XWiki standard distribution but instead of using the embedded hsqldb database we will use a MySql database. For this you need to:
10
Thomas Mortagne 4.1 11 * modify the ##hibernate.cfg.xml## file to change hsqldb configuration by a proper MySQL configuration
12 * copy your database driver JAR in WEB-INF/lib or in some shared lib directory
13
Thomas Mortagne 1.1 14 See http://www.xwiki.org/xwiki/bin/view/AdminGuide/Installation for more details on how to install XWiki.
15
Thomas Mortagne 3.1 16 At this point you almost have a XWiki cluster: you have two instances of XWiki which are using the same datas. But there is a remaining "detail": the problem is that for performance reason XWiki is using lots of different caches which mean that even if one instance of XWiki modify a document it's possible the other XWiki instance will not see it and keep showing the document from its cache.
Thomas Mortagne 1.1 17
Thomas Mortagne 5.1 18 = Configure event distribution =
Thomas Mortagne 3.1 19
Jerome 3.2 20 To handle this we will use the network event distribution system. When anything happens in a XWiki instances it generate a local event which is used to update caches. Here we will make theses events send to other XWiki instances as well and emulate local events. This way all the code updating its cache each time something changed in a particular document for example will also be notified if it has been done by another instance of XWiki.
Thomas Mortagne 1.1 21
Thomas Mortagne 5.1 22 == Enable remote observation ==
Thomas Mortagne 1.1 23
24 First you need to enable remote observation system.
25
Thomas Mortagne 4.1 26 For this go to xwiki.properties file and set the property ##observation.remote.enabled## to ##true##.
Thomas Mortagne 1.1 27
Thomas Mortagne 5.1 28 == Set the channels ==
Thomas Mortagne 1.1 29
30 Then you need to indicate to remote observation manager which communications channels it should start when XWiki starts.
31
Thomas Mortagne 4.1 32 For this you need to list in property ##observation.remote.channels## the names of the channels.
Thomas Mortagne 1.1 33
Thomas Mortagne 10.1 34 Here we set ##udp## in both instances to use embedded JGroups udp.xml configuration file which auto discover cluster members.
Thomas Mortagne 1.1 35
Thomas Mortagne 5.1 36 = Start XWiki instance on different ports =
Thomas Mortagne 1.1 37
38 For this tutorial we run two instance of XWiki in the same server. So we need each instance to use different ports.
39
40 To run a XWik instance if a custom port you can provide it in parameter of the script start_xwiki.sh.
41
42 Here we start the first instance with:
Thomas Mortagne 4.1 43
44 {{code}}
Thomas Mortagne 1.1 45 sh start_xwiki.sh 8080 8070
Thomas Mortagne 4.1 46 {{/code}}
Thomas Mortagne 1.1 47
48 and the second one with:
Thomas Mortagne 4.1 49
50 {{code}}
Thomas Mortagne 1.1 51 sh start_xwiki.sh 8081 8071
Thomas Mortagne 4.1 52 {{/code}}
Thomas Mortagne 1.1 53
54 The second port is the port used to stop jetty server, it's not mandatory to run XWiki but it's better to have differents ports if you don't want to have to kill the java process instead of using the stop_xwiki.sh script ;)
Thomas Mortagne 5.1 55
Jerome 15.1 56 Sometimes you have to force the bind address, you can do it using ##-Djgroups.bind_addr=127.0.0.1##
Thomas Mortagne 12.1 57
Jerome 7.1 58 = Check the clustering setup =
Thomas Mortagne 5.1 59
60 * Load a page in both instances
61 * Modify a page in one instance
62 * Reload it in the other instance
63 * It should have taken into account the modification made on the other instance
Jerome 7.1 64
65 = Add load balancing with apache2 ##mod_proxy_balancer## =
66
67 You probably want to do load-balancing in front of the clustered XWiki instances. This section provides sample configurations to do that.
68
Jerome 7.2 69 Replace if you have one your apache proxy configuration by the following one, or set it as proxy of your apache site configuration if you don't have one yet :
Jerome 7.1 70
71 {{code}}
72 ProxyRequests Off
73 ProxyPreserveHost On
74
75 <Proxy balancer://mycluster>
76 BalancerMember ajp://127.0.0.1:8009 route=jvm1
77 BalancerMember ajp://127.0.0.1:9009 route=jvm2
78 ProxySet stickysession=JSESSIONID
79 </Proxy>
80 ProxyPass /xwiki balancer://mycluster/xwiki
81 {{/code}}
82
83 You need also to precise the name of the JVM route for each tomcat member of the balancer. In ##conf/server.xml##, edit the ##Engine## node as follow :
Thomas Mortagne 10.1 84 {{code}} <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">{{/code}}
Jerome 7.1 85
86 Where you replace ##jvm1## by the name of the route you have precised in the Apache configuration.
87
88 To test the load-balancing setup, you can edit the ##version.properties## file of your wiki to add a suffix to be able to recognize each member of the cluster. For example ##version=2.6.33077-node1## for the first node of a cluster of XWiki 2.6 nodes. Then, connect to the wiki via the URL that points to the load-balancer with a first browser, and look at which node is being used. Just after connect with a second browser (to have a different session), and make sure the node used is the other one (since mod_proxy_rewrite affects balancing members sequentially.
Thomas Mortagne 8.1 89
90 = Troubleshoot =
91
Vincent Massol 9.1 92 == Debugging ==
Thomas Mortagne 8.1 93
Vincent Massol 9.1 94 See [[Debugging Section>>extensions:Extension.Observation Module Remote#HDebugging]] in the Observation Reference documentation.

Get Connected