Disable the scheduler process on start-up
search cancel

Disable the scheduler process on start-up

book

Article ID: 138386

calendar_today

Updated On:

Products

CA Workload Automation AE - Scheduler (AutoSys) Autosys Workload Automation

Issue/Introduction

We need to disable the scheduler process at start-up on our DR servers. 

 

Environment

Release : 11.3.6

Component : CA Workload Automation AE (AutoSys)

Resolution

There are a few different ways you can configure your system so the scheduler does not start at boot time.

You can manually remove the references to the scheduler in your init script rc directories...

Example:

cd /etc

find . -name S*waae_sched* -print

./rc.d/rc3.d/S11waae_sched.MOM

./rc.d/rc5.d/S11waae_sched.MOM

Then remove the files.

Or on unix/linux you can use the unisrvcntr command to remove the files

Example:

unisrvcntr register --StartInit=NULL waae_sched.MOM

the NULL tells it to have no startup scripts for my service

Or to have it start them during boot you specify the run levels.

Example:

unisrvcntr register --StartInit=35 waae_sched.MOM

that would put the files back in the /etc/rc.d/rc3.d and rc5.d directories so the os would use them during startup.

FYI - You may also see files that start with K<#> for the waae components. The K is for Killing aka the system uses during shutdown. There is an option --StopInit for unisrvcntr as well. If you run "unisrvcntr" with no options you will see the usage page. For windows, it would just be a matter of toggling the windows service to manual or disabled.