Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Page updated

Table of Contents

...

Removal Using the Uninstaller

The Uninstaller $SCHEDULER_HOME/Uninstaller/uninstall.jar is initialized by the setup program used to install the JobScheduler.

...

Code Block
languagetext
titleExample: Start Starting the uninstaller on Unix®
unix-shell> $SCHEDULER_HOME/Uninstaller/uninstall.sh
Code Block
languagetext
titleExample: Start Starting the uninstaller on Microsoft® Windows®
windows-shell> $SCHEDULER_HOME\Uninstaller\uninstall.cmd

 

On Unix® Unix® the uninstaller ask for root permissions via sudo. I If you have installed the JobScheduler without root permission permissions then the uninstaller doesnwon't need root permission either. In this case you type:

Code Block
languagetext
titleExample: Start uninstaller on Unix® without root permissions
unix-shell> $SCHEDULER_HOME/Uninstaller/uninstall.sh -u

On Microsoft® Windows® Microsoft® Windows® a dialog box asks for the removal of the JobScheduler to be confirmed.

A database or database tables created for the JobScheduler must be deleted manually.

The SOS JobScheduler id=[scheduler_id] service on Microsoft® Windows® Microsoft Windows should be removed manually after uninstalling a JobScheduler. It is important to note here the correct [scheduler_id] - that is the ID specified during installation of the JobScheduler. It may be that this service is after attempted removal a service will still be shown and marked as being deactivated. In this case, the service will only be fully removed after the computer has been restarted. This can be verified by opening the service panel (Start->Run services.msc) or by entering:

Status
colourYellow
titlecontent missing here in the original pdf

.

If a service has only Should the service only have been deactivated, then a renewed installation of a JobScheduler with the same [scheduler_id] will only be possible after the computer has been restarted.

...

Manual Removal on Microsoft® Windows®

To manually remove a JobScheduler, it is necessary to open a shell (Start->Run cmd) and then carry out the following steps.

  • Stop the JobScheduler

    Code Block
    languagetext
    $SCHEDULER_HOME\bin\jobscheduler.cmd stop

    An error message will be shown, should if the JobScheduler has already have been stopped. This message can be ignored.

  • Remove the JobScheduler Service

    Code Block
    languagetext
    $SCHEDULER_HOME\bin\jobscheduler.cmd remove
  • Remove the database or database tables
    The documentation for any database which may have been installed for the JobScheduler should be consulted for instructions as to its removal. 

     

  • Deregister the hostole.dll program library (only for 32Bit $js;)

    Code Block
    languagetext
    regsvr32 /u $SCHEDULER_HOME\bin\hostole.dll
  • Delete all files and directories

    Code Block
    languagetext
    rmdir /S /Q $SCHEDULER_HOME 
    rmdir /S /Q $SCHEDULER_DATA

...

Manual Removal on Unix®

To manually remove the JobScheduler, a shell should be opened and then the following steps carried out:

  • Stop the JobScheduler

    Code Block
    languagetext
    $SCHEDULER_HOME/bin/jobscheduler.sh stop

    An error message will be shown, should if the JobScheduler has already have been stopped. This message can be ignored. 

  • Remove the database database or database tables
    The documentation for any database which may have been installed for the JobScheduler should be consulted for instructions as to its removal.
     
  • Delete all files and directories

    Code Block
    languagetext
    rm -r -f $SCHEDULER_HOME 
    rm -r -f $SCHEDULER_DATA