You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by Apache Wiki <wi...@apache.org> on 2005/12/02 08:13:54 UTC

[Geronimo Wiki] Update of "Running" by JohnSisson

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Geronimo Wiki" for change notification.

The following page has been changed by JohnSisson:
http://wiki.apache.org/geronimo/Running

The comment on the change is:
Document change in startup parameters for 1.0 release

------------------------------------------------------------------------------
  
  There are some command-line flags that you can use to modify what gets output to the console:
      {{{
- java -jar server.jar -quiet       Very quiet startup, log level WARN
+ java -jar server.jar --quiet      Very quiet startup, log level WARN.  Prior to the 1.0 release this option was -quiet.
+ java -jar server.jar --long       Progress information without progress bar, log level WARN (Since 1.0 release)
  java -jar server.jar              Progress bar, server version, log level WARN
  java -jar server.jar -v           No progress, log level INFO
  java -jar server.jar -vv          No progress, log level DEBUG
@@ -163, +164 @@

  $ 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!''):
+ 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!'') Note that you must specify the --override option since the 1.0 release:
  
      {{{
- $ java -jar bin/server.jar <configuration1> <configuration2> ...
+ $ java -jar bin/server.jar --override <configuration1> <configuration2> ...
  }}}
  
  where ''configuration'' is taken from the [http://wiki.apache.org/geronimo/Running#head-5f92010643d39198ac56582cf9aae8af827cbc91 Available configurations] list.