Help documentation

Running Go as a jar

Run Go server

You can launch the Go server jar directly to start Go server. All folders and files will be created automatically in the current working directory. To launch the server:

  1. create a directory for the server to run from
  2. copy cruise.jar into that directory
  3. From that directory, run the command:
  4. java -jar cruise.jar

Run Go agent

You can launch the Go agent bootstrapper jar directly to start Go agent. It will create all folders and files in current working directory, just like the folder structure with the installed version. For example, create a directory for Go agent and start it:

  1. create a directory for the agent to run from
  2. copy agent-bootstrapper.jar into that directory
  3. From that directory, run the command:
  4. java -jar agent-bootstrapper.jar <cruise-server-hostname> [port]

The agent-bootstrapper.jar accepts two arguments: the hostname of Go server (required) and the port of Go server (default of 8153).