Versions Compared

Key

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

Table of Contents

Introduction

For JS7 - Automated Deployment On Premises use of a Deployment Area is recommended.

...

Code Block
languagebash
titleDownload Performing download of Deployment Area tarball from SOS Web Site
curl "https://download.sos-berlin.com/JobScheduler.2.5/js7_deploy.tar.gz" --output "js7_deploy.tar.gz"

...

Code Block
languagebash
titleExtract Extracting Deployment Area tarball
cd $HOME
tar -xzf js7_deploy.tar.gz

...

Code Block
languagebash
titleRun Running the env.sh Environment Script
. ./env.sh

...

Users are free to choose the directory hierarchy at their will.

Download JS7 Installation

...

Files

Download can be performed in a number of ways. The curl utility can be used to this purpose like this:

...

...