Versions Compared

Key

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

...

No matter where the system property is defined, wrapper.conf or startup.cmd/startup.sh, what we 're actually trying to will accomplish here is the passing of a new command line parameter to the Weave server process. The command line parameter we're trying to pass to the server process is specified in the format -Dname=value. The -D tells the Java process that we're defining a new property, name is the name of the property we're creating and value is what we want to set it to. However, since we don't As we do not start the Weave server process manually and rely on the service wrapper or startup.cmd/startup.sh to do it for us, what we're outlining here is how we tell them to pass the new command line parameter to the process when it starts.

...