Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Set the org.apache.geronimo.server.name system property before you start the server. By default, this system property is set to null, defining the server instance at <geronimo_home> as the default instance. Use the syntax -Dorg.apache.geronimo.server.name=foo for to change the server name to an instance named foo located at <geronimo_home>/foo. Add this to your GERONIMO_OPTS environment variable:
  • On a Windows system: set GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=foo
  • On a Unix-like system: export GERONIMO_OPTS=-Dorg.apache.geronimo.server.name=foo
  1. Start the server using startup
    No Format
    borderStylesolid
    <geronimo_home>/bin/startup
    
  2. To shutdown this instance, use the port number of RMI Naming port (default 1099). For the new instance foo, the port number should be 1099 plus portOffset specified in foo/var/config/config-substitutions.properties.
    No Format
    borderStylesolid
    <geronimo_home>/bin/shutdown --port <port_num>
    
  3. To deploy applications to this instance use the port number of RMI Naming port
    No Format
    borderStylesolid
    <geronimo_home>/bin/deploy --port <port_num> deploy <applications>
    

...