Uploaded image for project: 'JS - JobScheduler'
  1. JS - JobScheduler
  2. JS-1114

If you use the JobScheduler setup release 1.6.4014 for a new installation then the Jetty plugin doesn't work properly.

    XMLWordPrintable

Details

    • Fix
    • Status: Released (View Workflow)
    • Major
    • Resolution: Fixed
    • 1.5.4014, 1.6.4014
    • 1.5.4043, 1.6.4043
    • Setup
    • None

    Description

      If you use the JobScheduler setup release 1.6.4014 for a new installation then the Jetty plugin doesn't work properly.

      The resourceBase parameter of the JOC servlet in the ./config/web.xml has an empty value so that you get a 404 mesage if you open JOC with Jetty.

      WORKAROUND:
      You have two options to solve this problem.
      1. Delete the ./config/web.xml and update your installation with the JobScheduler release 1.6.4043
      2. Edit the ./config/web.xml manually and enter the JobScheduler installation path into the resourceBase parameter of the JOC servlet. Note that the JobScheduler installation path has to be the form with a file:// protocol.

      For example, the JobScheduler installation path is /opt/sos-berlin.com/jobscheduler/myscheduler (unix) or C:\Program Files\sos-berlin.com\jobscheduler\myscheduler (windows) then the resourceBase parameter of the JOC servlet has the value:

          <servlet>
              <servlet-name>JOC</servlet-name>
              <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>
              <init-param>
                  <param-name>resourceBase</param-name>
                  <param-value>file:///opt/sos-berlin.com/jobscheduler/myscheduler</param-value>
              </init-param>
          </servlet>
      

      or

          <servlet>
              <servlet-name>JOC</servlet-name>
              <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>
              <init-param>
                  <param-name>resourceBase</param-name>
                  <param-value>file:///C:/Program Files/sos-berlin.com/jobscheduler/myscheduler</param-value>
              </init-param>
          </servlet>
      

      Attachments

        Activity

          People

            oh Oliver Haufe
            oh Oliver Haufe
            Oliver Haufe Oliver Haufe
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: