You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

11.1 Removal Using the Uninstaller

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

The Uninstaller is started using:

Example: Start uninstaller on Unix®
unix-shell> $SCHEDULER_HOME/Uninstaller/uninstall.sh
Example: Start uninstaller on Microsoft® Windows®
windows-shell> $SCHEDULER_HOME\Uninstaller\uninstall.cmd

 

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

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

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

A database created for the JobScheduler must be deleted manually.

The SOS JobScheduler id=[scheduler_id] service on 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 marked as being deactivated. In this case, the service will only be removed after the computer has been restarted. This can be verified by opening the service panel (Start->Run services.msc) or by entering:

CONTENT MISSING HERE IN THE ORIGINAL PDF

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.

11.3 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

    $SCHEDULER_HOME\bin\jobscheduler.cmd stop

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

  • Remove the JobScheduler Service

    $SCHEDULER_HOME\bin\jobscheduler.cmd remove
  • Remove the database
    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;)

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

    rmdir /S /Q $SCHEDULER_HOME 
    rmdir /S /Q $SCHEDULER_DATA

11.3 Manual Removal on Unix®

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

  • Stop the JobScheduler

    $SCHEDULER_HOME/bin/jobscheduler.sh stop

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

  • Remove the database 
    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

    rm -r -f $SCHEDULER_HOME 
    rm -r -f $SCHEDULER_DATA
  • No labels