• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • Last Change
  • Annotate
  • Revision Log

root/trunk/etc/grid/default.xml

Revision 2991, 1.7 kB (checked in by jmoore, 3 months ago)

ticket:1106 - OmeroWeb / OmeroGrid integration

With this integration, an OmeroWeb instance will
be started via the "manage.py runserver" command
in Django (a development server only), in
order to allow users to easily add users after
initial installation. The development version can
later be replaced by a more serious web server:
apache, nginx, etc.

Line 
1<icegrid>
2
3<!--
4    OMERO Grid Application Descriptor
5    Copyright 2008 Glencoe Software, Inc.  All Rights Reserved.
6    Use is subject to license terms supplied in LICENSE.txt
7-->
8
9  <application name="OMERO" import-default-templates="true">
10
11    <replica-group id="BlitzAdapters">
12      <load-balancing type="adaptive" load-sample="5" n-replicas="2"/>
13      <object identity="BlitzVerifier" type="::Glacier2::PermissionVerifier"/>
14      <object identity="BlitzManager" type="::Glacier2::SessionManager"/>
15    </replica-group>
16
17    <replica-group id="ProcessorAdapters">
18      <!--load-balancing type="adaptive" load-sample="5" n-replicas="2"/-->
19      <load-balancing type="round-robin"/>
20      <object identity="Processor" type="::omero::grid::Processor"/>
21    </replica-group>
22
23    <node name="master">
24      <server-instance template="Glacier2Template"
25        client-endpoints="tcp -p 4063"
26        session-timeout="300"
27        server-endpoints="tcp -h 127.0.0.1"/>
28      <server-instance template="BlitzTemplate" index="0"/>
29      <server-instance template="ProcessorTemplate" index="0"/>
30      <server-instance template="ShellTemplate" id="Web"/>
31      <target name="postgres">
32        <server-instance template="ShellTemplate" id="postgres"/>
33      </target>
34      <target name="jboss">
35        <server-instance template="ShellTemplate" id="JBoss" exe="lib/jboss.py">
36          <properties>
37            <property name="jboss.home" value="jboss"/>
38          </properties>
39        </server-instance>
40      </target>
41    </node>
42
43    <node name="node1">
44      <server-instance template="ProcessorTemplate" index="1"/>
45    </node>
46
47    <node name="node2">
48      <server-instance template="ProcessorTemplate" index="2"/>
49    </node>
50
51  </application>
52
53</icegrid>
Note: See TracBrowser for help on using the browser.

Download in other formats:

  • Plain Text
  • Original Format

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/