Versions Compared

Key

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

...

Code Block
languagebash
titleExample for use of Controller Installation Script
curl 'https://download.sos-berlin.com/JobScheduler.2.5/js7_controller_unix.2.5.2.tar.gz' \
    -o /tmp/js7_controller_unix.2.5.2.tar.gz
 
./js7_install_controller.sh \
    --tarball=/tmp/js7_controller_unix.2.5.2.tar.gz \
    --home=/opt/sos-berlin.com/js7/controller \
    --controller-id=controller \
    --http-port=4444 \
    --Standbystandby \
    --make-dirs

# downloads the Controller release tarball from the SOS Web Site using curl
# specifies the Controller ID that is used by all instances in the Controller Cluster
# puts the Controller instance to initial standby mode for use in a cluster, the following applies for cluster setup:
#    the Primary Controller instance is not configured for standby mode
#    the Secondary Controller instance is configured for standby mode
# creates the home directory if it does not exist
# extracts the tarball to the Controller's home directory
# populates the data directory from initial configuration files
# operates the Controller for HTTP port 4444

...