I have server AIX 433 running TSM 4.1.4.5 & 4.1.3 client. The TSM scheduler runs out of /usr/tivoli/tsm/client/ba/bin. Over the past week, the TSM scheduler just quits.
example of scheduler process while running: afcops2: /usr/local/bin # ps -aef | grep sched root 11502 31266 1 14:46:24 pts/0 0:00 grep sched root 22444 1 0 14:33:33 - 0:00 dsmc sched ---------- I start the scheduler on system reboot via an entry in my inittab: adsmschd:a2:once:/etc/rc.adsmc >/dev/null 2>&1 #Start ADSM Sched ---------- The inittab entry runs a script rc.adsmc: #------------------------------------------------------------------------------- # Title : ADSM automatic dsmc scheduler startup # Date : 09/08/1999 # # Written by B/Johnson # # Function : To enable the CLIENT SCHEDULER DAEMON to be # restarted automatically on reboot # # Actions : put the following line into /etc/inittab # # 1) adsm::once:/etc/rc.adsmc > /dev/null 2>&1 #ADSM Scheduler #------------------------------------------------------------------------------- # #set -x BASEDIR=/usr/tivoli/tsm/client/ba/bin if [ -x ${BASEDIR}/dsmc ] then echo "...Starting ADSM CLIENT SCHEDULER DAEMON..." cd ${BASEDIR} nohup dsmc sched 2>&1 > /dev/null & echo "...ADSM CLIENT SCHEDULER DAEMON STARTED..." echo "...Sending output to /dev/null..." else echo "...Cannot start ADSM Client Scheduler..." echo "...${BASEDIR}/dsmc does not exist..." fi exit 0 ___________________Yesterday, I wrote a script to check the scheduler on the hour (script runs via crontab) and restart the scheduler, if necessary... here is script: #!/bin/ksh #check to make sure TSM scheduler running cd /usr/local/bin SCHED=$(ps -aef | grep -v grep | grep -v tsmsched.scr | grep sched) echo "${SCHED}" | while read -r SCHEDULER_RUNNING do case "${SCHEDULER_RUNNING}" in "") echo "TSM Scheduler not running at `date`" >> /tmp/tsmscheduler.log echo "The TSM Scheduler was restarted at `date`" >> /tmp/tsmscheduler.log telinit a echo "TSM Scheduler was restarted at `date`" | mail -s "TSM Scheduler quit!" "[EMAIL PROTECTED]" ;; *) echo "TSM Scheduler running at `date`" >> /tmp/tsmscheduler.log ;; esac done ______________here is a copy of the log generated by the above script: TSM Scheduler running at Mon Feb 25 15:00:01 CST 2002 TSM Scheduler running at Mon Feb 25 16:00:00 CST 2002 TSM Scheduler running at Mon Feb 25 17:00:00 CST 2002 TSM Scheduler running at Mon Feb 25 18:00:01 CST 2002 TSM Scheduler not running at Mon Feb 25 19:00:00 CST 2002 The TSM Scheduler was restarted at Mon Feb 25 19:00:00 CST 2002 TSM Scheduler not running at Mon Feb 25 20:00:00 CST 2002 The TSM Scheduler was restarted at Mon Feb 25 20:00:00 CST 2002 TSM Scheduler not running at Mon Feb 25 21:00:00 CST 2002 The TSM Scheduler was restarted at Mon Feb 25 21:00:00 CST 2002 TSM Scheduler not running at Mon Feb 25 22:00:00 CST 2002 The TSM Scheduler was restarted at Mon Feb 25 22:00:00 CST 2002 TSM Scheduler not running at Mon Feb 25 23:00:00 CST 2002 The TSM Scheduler was restarted at Mon Feb 25 23:00:00 CST 2002 TSM Scheduler not running at Tue Feb 26 00:00:00 CST 2002 The TSM Scheduler was restarted at Tue Feb 26 00:00:00 CST 2002 TSM Scheduler not running at Tue Feb 26 01:00:00 CST 2002 The TSM Scheduler was restarted at Tue Feb 26 01:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 02:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 03:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 04:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 05:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 06:00:01 CST 2002 TSM Scheduler running at Tue Feb 26 07:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 08:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 09:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 10:00:00 CST 2002 TSM Scheduler running at Tue Feb 26 10:00:00 CST 2002 ////////////////Any hints as to why the scheduler is now stopping for no apparent reason... the rc.adsmc script had run without a hitch since 1999... Thanks - George Lesho AFC Enterprises