Versions Compared

Key

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

...

  • Extract the downloaded archive to a directory.
  • After extraction the resulting directory structure includes (only files and folders immediately relevant):
    • controller
      • license.gpl (copy of  GPLv3 (General Public License) )
      • license.html, license.txt (copy of JS7 JobScheduler Commercial License Agreement)
      • ThirdParty.txt (list of 3rd party components and licenses included with the JS7 Controller)
      • bin
        • controller.cmd|sh
          • The Start Script for Windows/Unix platforms
        • controller_watchdog.cmd|sh
          • Restarts the Controller for Windows/Unix platforms
        • environment_variables.cmd|sh
          • Environment Startup Script for the JS7 Controller
      • lib (directory for Java libraries)
      • service (directory for operation as a Windows Service)
        • amd64
        • manager
        • x86
        • install_controller_windows_service.cmd
        • LICENSE.txt (copy of Apache License, Version 2.0)
        • NOTICE.txt
        • RELEASE-NOTES.txt
        • uninstall_controller_windows_service.cmd
      • user_bin
        • environment_variables.cmd|sh-example 
          • Sample configuration file to set individual environment variables. Drop the -example extension to activate this file.
      • var (configuration directory)
        • logs config(directory for log configuration files)
            config (directory for configuration files
            • controller.conf (general Controller configuration)
            state
            • private (directory for
            Controller journal
            • security related configuration files)
              license
                  • private.
              gpl (copy of  GPLv3 (General Public License) )
            • license.html, license.txt (copy of JS7 JobScheduler Commercial License Agreement)
              • logs (directory for log files)
              • state (directory for journal files
              ThirdParty.txt (list of 3rd party components and licenses included with the JS7 Controller
              • )
          • On Windows Systems:
            • You have to modify the directory permissions for the above .\logs and .\service directories if you extract the Controller to e.g. C:\Program Files.
              • This step is not required if you extract the Controller e.g. to C:\ProgamData.
              • Start a command prompt with elevated administrative rights and execute e.g.

                Code Block
                languagebash
                titleAllow full acces for "Users" on .\service and .\logs directories
                cd "path\to\installation-directory"
                icacls "service" /L /grant *S-1-5-32-545:(OI)(CI)F
                icacls "logs" /L /grant *S-1-5-32-545:(OI)(CI)F 

        ...