Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add the encrypt subcommand

...

No Format
export JAVA_OPTS="-Djavax.net.ssl.trustStore=<geronimo_home>/var/security/keystores/geronimo-default 
-Djavax.net.ssl.trustStorePassword=secret"

...

Additionally, you can type help for further details on a given command, the syntax is as follows:

...

Off course, you can also combine --offline and --inPlace

No Format
deploy  <general_options> --offline deploy --inPlace <APP_HOME>

...

Use the undeploy command to stop and remove a module (running or not) and its deployment information from the server. The undeploy command has the following syntax:

No Format
deploy  <general_options> undeploy <moduleIDs>

...

  • J2EE Enterprise Application Archive (EAR) file
  • J2EE Web Application Archive (WAR) file
  • J2EE Enterprise JavaBean Archive (JAR) file
  • J2EE Java Resource Archive (RAR) file

Back to top

Encrypt

Use the encrypt command to encrypt a string. The encrypt command has the following syntax:

No Format

deploy <general_options> encrypt <String>

Where <String> specifies the string to get encrypted.

Examples:

No Format

deploy -h localhost -p 1099 encrypt passw0rd

That command will encrypt the passw0rd string when the server is running.

No Format

deploy -o encrypt passw0rd

That command will encrypt the passw0rd string when the server is not running.

Back to top

Install-library

...