Date: 2004-11-24T12:33:30
   Editor: AaronMulder <[EMAIL PROTECTED]>
   Wiki: Apache Geronimo Wiki
   Page: Running
   URL: http://wiki.apache.org/geronimo/Running

   no comment

Change Log:

------------------------------------------------------------------------------
@@ -120,13 +120,15 @@
 
 == Using geronimo-assembly-1.0-SNAPSHOT.jar ==
 
-First, you must unpack the Geronimo binary 
${maven.repo.local}/geronimo/jars/geronimo-assembly-1.0-SNAPSHOT.jar into the 
location you wish to install Geronimo.  For instance,
+If you've built from source, you must unpack the Geronimo binary 
${maven.repo.local}/geronimo/jars/geronimo-assembly-1.0-SNAPSHOT.jar into the 
location you wish to install Geronimo.  For instance,
 
     {{{
 $ cd myproject
 $ jar -xf ~/.maven/repository/geronimo/jars/geronimo-assembly-1.0-SNAPSHOT.jar
 }}}
 
+(If you have installed a Milestone release then you should have an unpacked 
Geronimo directory already).
+
 The Geronimo server is started using the executable jar file `bin/server.jar`. 
 
     {{{
 $ java -jar bin/server.jar
@@ -134,20 +136,28 @@
 
 To stop the server use ctrl-C or an equivalent; a proper shutdown command will 
be made available in a future release.
 
-The first time this is run, the default configuration 
(''org/apache/geronimo/Server'') will be started. When the server is shut down 
cleanly, the list of running configurations is saved. These will be reloaded 
automatically the next time the server is started.
+The first time this is run, the default configurations will be started. When 
the server is shut down cleanly, the list of running configurations is saved. 
These will be reloaded automatically the next time the server is started.
 
+=== For Advanced Users Only ===
 It is possible to override this automatic restart mechanism by specifying one 
or more configuration names on the command line. For example, to start just the 
default configuration without any user applications use:
+
+    '''Milestone 3'''
     {{{
 $ java -jar bin/server.jar org/apache/geronimo/Server
 }}}
 
-So, specify as much configurations as you wish to have them started up in a 
Geronimo instance:
+    '''SVN Head'''
+    {{{
+$ java -jar bin/server.jar org/apache/geronimo/RuntimeDeployer
+}}}
+
+So, specify as many configurations as you wish to have them started up in a 
Geronimo instance (but for any release after M3, ''make sure to include 
org/apache/geronimo/!RuntimeDeployer in the list!''):
 
     {{{
 $ java -jar bin/server.jar <configuration1> <configuration2> ...
 }}}
 
-,where ''configuration'' is taken from the 
[http://wiki.apache.org/geronimo/Running#head-5f92010643d39198ac56582cf9aae8af827cbc91
 Available configurations] list.
+where ''configuration'' is taken from the 
[http://wiki.apache.org/geronimo/Running#head-5f92010643d39198ac56582cf9aae8af827cbc91
 Available configurations] list.
 
 == Using the target of assembly module ==
 
@@ -171,9 +181,9 @@
     ||org/apache/geronimo/Server||Normal server configuration (run by default 
if no configuration is specified)||
     ||org/apache/geronimo/!DefaultDatabase||FIXME||
     ||org/apache/geronimo/!SystemDatabase||FIXME||
-    ||org/apache/geronimo/!SystemJMS||start up an ActiveMQ Broker and deploy a 
resource adapter for it||
+    ||org/apache/geronimo/SystemJMS||start up an ActiveMQ Broker and deploy a 
resource adapter for it||
     ||org/apache/geronimo/Secure||FIXME||
-    ||org/apache/geronimo/ClientSystem||FIXME||
+    ||org/apache/geronimo/!ClientSystem||FIXME||
     ||org/apache/geronimo/Client||FIXME||
     ||org/apache/geronimo/Demo||FIXME||
     ||org/apache/geronimo/!DebugConsole||JmxDebuggingTool web application ||

Reply via email to