Versions Compared

Key

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

 

Table of Contents

Introduction

  • JOC Cockpit comes preinstalled from a container image.
  • Before running the Before installing JOC Cockpit container the following requirements should be met:
    • A database is Either the embedded H2® database can be used or an external database should be made available and is accessibleaccessible - see the JS7 - Database article for more information.
    • Docker volumes Volumes are created to persist for persistent JOC Cockpit configuration data and log files.
    • A Docker container network or similar mechanism is made available to enable network access of between JOC Cockpit, Controller instance(s) and to Agents.
  • Installation of JOC Cockpit includes the following steps:
    • Start the JOC Cockpit container.
    • Execute a script inside the container to create database objects.
  • Initial operation for JOC Cockpit includes includes:
    • to specify registering the Controller instance(s) and Agents that are used in your the job scheduling environment.
    • to optionally specify registering a JS7 Controller cluster. 

As an alternative to the instructions from this article users can consider the JS7 - JOC Cockpit Installation using Docker Compose article.

Installation Video

This video explains the installation of JOC Cockpit from container images.

Widget Connector
urlhttps://www.youtube.com/watch?v=dCZXrju9lDE&ab_channel=JobScheduler

Prerequisites

Check that  20.10 or newer is operated..

Pulling the JOC Cockpit Image

Pull the version of the JOC Cockpit image that corresponds to the JS7 release in use, for example:

Code Block
languagebash
titlePulling the JOC Cockpit Image
linenumberstrue
docker image pull sosberlin/js7:joc-2-0-0-SNAPSHOT5-0

Note: Current releases should be applied as available from https://hub.docker.com/r/sosberlin/js7

Running the JOC Cockpit Container

After pulling the JOC Cockpit image you users can run the container with a number of options like thissuch as:

Code Block
languagebash
titleRunning the JOC Cockpit Container for HTTP Connections
linenumberstrue
#!/bin/sh

docker run -dit --rm \
      --user="$(id -u $USER):$(id -g $USER)" hostname=js7-joc-primary \
      --hostnamenetwork=js7-joc-primary \
      --networkpublish=js717446:4446 \
      --publish=17446:4446env="RUN_JS_JAVA_OPTIONS=-Xmx256m" \
      --env="RUN_JS_JAVAUSER_OPTIONS=-Xmx256mID=$(id -u $USER):$(id -g $USER)" \
      --mount="type=volume,src=js7-joc-primary-config,dst=/var/sos-berlin.com/js7/joc/resources/joc" \
      --mount="type=volume,src=js7-joc-primary-logs,dst=/var/log/sos-berlin.com/js7/joc" \
      --name js7-joc-primary \
      sosberlin/js7:joc-2-05-0-SNAPSHOT


ExplanationsExplanation:

  • --user Inside the container the JOC Cockpit instance is operated for the user account jobscheduler. In order to access e.g. log files created by the JOC Cockpit instance that are mounted to the Docker host it is recommended that you map the account that is starting the container to the jobscheduler account inside the container. The --user option accepts the user ID and group ID of the account that will be mapped. The above example makes use of the current user.--network The above example makes use of a Docker container network - created e.g. with the command , for example, using the docker network create js7  command - to allow network sharing between containers. Consider Note that any inside ports used by Docker containers are visible within a Docker container network. Therefore a JOC a JOC Cockpit instance running for the inside port 4446 is accessible can be accessed with the container's hostname and the same port within the Docker container network.
  • --publish The JOC Cockpit is prepared has been configured to listen to the HTTP port 4446. An outside port of the Docker host can be container's host is mapped to the JOC the JOC Cockpit inside HTTP port. This mapping is not required for use with a Docker network, see --network, however, it will required to allow direct access to the JOC the JOC Cockpit user interface from the Docker host by its outside port .
  • --env=RUN_JS_JAVA_OPTIONS This allows to inject any Java options to be injected into the JOC Cockpit container. Preferably this is used to specify memory requirements of the JOC Cockpit, e.g. with -Xmx256mfor example,  with -Xmx256m. For details see JS7 - FAQ - Which Java Options are recommended
  • --env=RUN_JS_USER_ID Inside the container the JOC Cockpit is running for the jobscheduler user account. In order to access, for example, log files created by the JOC Cockpit, which are mounted to the container's host, it is recommended that users map the account that starts the container to the jobscheduler account inside the container. The RUN_JS_USER_ID environment variable accepts the User ID and Group ID of the account that will be mapped. The example above makes use of the current user, for details see JS7 - Running Containers for User Accounts.
  • --mount The following volume mounts are suggested:
    • config: The optional configuration folder allows to specify specification of individual settings for JOC Cockpit operation , - see the sections below chapters and the JS7 - JOC Cockpit Configuration Items article. Without this folder the default settings are used. This includes specifying the connection to the JS7 - Database. In addition users can store their versions of the following files in the volume for the configuration directory.
    • logs: In order to have JOC make JOC Cockpit log files persisted persistent they have to be written to a volume that is mounted for the container. Feel Users are free to adjust the volume name from the src attribute. However, however, the value of the dst attribute should not be changed as it reflects the directory hierarchy inside the container.
    • Docker offers Containers offer a number of ways how to mount or to bind volumes to containers that include e.g. to create of mounting or binding volumes including, for example, creation of local directories and to bind binding them to volumes like this:

      Code Block
      languagebash
      titleExample how to create Docker volumes
      linenumberstrue
      # example to map volumes to directories on the Dockercontainer's host prior to running the JOC Cockpit container
      mkdir -p /home/sos/js7/js7-joc-primary/config /home/sos/js7/js7-joc-primary/logs
      docker volume create --driver local --opt o=bind --opt type=none --opt device="/home/sos/js7/js7-joc-primary/config" js7-joc-primary-config
      docker volume create --driver local --opt o=bind --opt type=none --opt device="/home/sos/js7/js7-joc-primary/logs" js7-joc-primary-logs

      There are alternative ways how to achieve of achieving this. As a result you should users have a access to the directories /var/sos-berlin.com/js7/joc/resources/joc and /var/log/sos-berlin.com/js7/joc inside the container and data in both locations should be persistedpersistent. If volumes are not created before running the container then they will be mounted automatically mounted, however, you . However, users should have access to data in the volumes, e.g. by access to /var/lib/docker/volumes/js7-joc-primary-config etc.

Configuring the JOC Cockpit

...

Installing Database Objects

JOC Cockpit requires a database connection, see JS7 - Database.

The database connection is should be configured after before the initial start of the JOC Cockpit container.

The following sections can be skipped when using the H2® embedded database to evaluate JS7. Here it is sufficient to have the Hibernate configuration ready as this database runs in pre-configured mode inside the container.

Check the JDBC Driver

JS7 ships with a number of JDBC Drivers  However, a few DBMS products such as Microsoft SQL Server require users to download the JDBC Driver JDBC Drivers.

  • JDBC Drivers for use with MariaDB®, MySQL®, Oracle®, PostgreSQL® are included with JS7.
    • For details about JDBC Driver versions see the JS7 - Database article.
    • Should users have good reasons to use a different version of a JDBC Driver then they can apply the JDBC Driver version of their choice.
  • For use with H2®
    • The version of H2® successfully tested by SOS is h2-1.4.200.jar. At the time of writing later versions do not provide decent compatibility with MySQL to be applicable for JS7.
  • For use with Microsoft SQL Server®
    • The JDBC Driver has to be downloaded by the user as it cannot be bundled with open source software due to license conflicts.

...

  • Users can download JDBC Drivers from vendor's sites and store the resulting *.jar file(s)

...

  • in the following location:
    • Location in the container: /var/sos-berlin.com/js7/joc/resources/joc/lib
    • Consider accessing this directory from the volume that is mounted when running the container, for example, from a local folder /home/sos/js7/js7-joc-primary/config/lib.
    • Refer to the JS7 - Database article for details about the procedure.

Configure the Database Connection

In a first step users have to create a database schema and account for JS7. The database schema has to support the Unicode character set. 

  • For examples how to set up the database see the JS7 - Database article.

In a second step the database connection has to be

Configure Database Connection

The database connection is specified from a Hibernate configuration file:

  • Location in the container: /var/sos-berlin.com/js7/joc/resources/joc/hibernate.cfg.xml
  • Consider to access accessing the configuration file from the volume that is mounted when running the container, e.g. , for example, from a local folder /home/sos/js7/js7-joc-primary/config.
  • For modification Information about use of the Hibernate * hibernate.cfg.xml file consider explanations for your DBMS product available with the respective DBMS can be found in the JS7 - Database article.

...

Create Database Objects

When the Hibernate configuration file hibernate.cfg.xml is ready then a script has to be executed that creates required objects in the database and that populates database tables.Database objects are created by executing the following script inside the container::

Code Block
languagebash
titleInstall Create Database Objects
linenumberstrue
# create database objects
 docker exec -ti js7-joc-primary /bin/sh -c /opt/sos-berlin.com/js7/joc/install/joc_install_tables.sh

ExplanationsExplanation:

  • docker exec -ti is the command that connects to the JOC Cockpit container js7-joc-primary.
  • js7-joc-primary is the name of the JOC Cockpit container as specified with in the above docker run command mentioned above.
  • /bin/sh -c runs a shell inside the container and executes a script to install and populate the database objects required for operation of the JOC Cockpit.
  • Note that there is no harm in re-running the script a number of times as it will not remove existing data from the database.
  • Note that the script has to be executed once for any newer JOC Cockpit releases that are used from images provided by SOS.

Time Service

It is necessary that a time service is operated on the container's host which runs the JOC Cockpit in order to synchronize the system clock's time.

Log Files

Access to log files is essential to identify problems during installation and operation of containers.

By mounting a volume for log files as explained above users have access to the files indicated in the JS7 - Log Files and Locations article.

  • The jetty.log file reports about initial start up of the servlet container.
  • The joc.log file includes e.g. information about database access.

Anchor
initial_operation
initial_operation
Initial Operation

For initial operation, the JOC Cockpit GUI is used to make Controller instances instance(s) and Agent instances known to your the job scheduling environment.

Access JOC Cockpit from your Browser

Image Removed

Explanations:

For

...

use of JOC Cockpit

...

  • From the above example this could be http://centostest_primary.sos17446 if centostest_primary.sos were your Docker host and 17446 were the outside HTTP port of the container.
  • Consider that the Docker host has to allow incoming traffic to the port specified This might require to adjust the port or to create firewall rules.

with the Open Source license and with the commercial JS7 - License the following information applies:

If the JS7 is used for high availability in a JS7 - JOC Cockpit ClusterJS7 - Controller Cluster or JS7 - Agent Cluster using the commercial JS7 - License the following information applies:

Further Resources

Configuring the JOC Cockpit

Note that it is not necessary to configure the JOC Cockpit - it runs out-of-the-box. The default configuration specifies that: HTTP connections are used which expose unencrypted communication between clients and JOC Cockpit. Authentication is performed by hashed passwords.

Users who intend to operate a compliant and secure job scheduling environment or who wish to operate JOC Cockpit as a cluster for high availability are recommended to familiarize themselves with the JS7 - JOC Cockpit Configuration for Containers article series.

Build the JOC Cockpit Image

User who wish to create their own images of the JOC Cockpit can find instructions in the JS7 - JOC Cockpit Build of Container Image article

...

  • account: root
  • password: root

Register Controller and Agents

After login a dialog window pops up that ask to register a Controller. 

Image Removed

Explanations:

...

  • Consider that use of a cluster is subject to JS7 - Licensing.
  • Use of the Standalone Controller is in scope of the JS7 open source license.

...

.