Re: AIX startup of TSM scheduler

2004-01-09 Thread Lambelet,Rene,VEVEY,GL-CSC
Hi, we also use only dsmcad as starter for the tsm scheduler. Here a script that could help you for stopping, starting and restarting: #!/usr/bin/sh # rc.dsmcad , version 1.1 # # description: start or restart client acceptor daemon # constraints: must be run as root # it will start

Re: AIX startup of TSM scheduler

2004-01-08 Thread Justin Bleistein
| | cc:

Re: AIX startup of TSM scheduler

2004-01-07 Thread Dan Foster
Hot Diggety! Prather, Wanda was rumored to have written: > This always works for me: > > nohup dsmc sched 2>&1 >/dev/null /dev/null 2>&1 (It is usually preferrable to put this at or near the very end of the file) Then do: # kill -HUP 1 (to make inittab aware) Subsequently, if you want to forc

Re: AIX startup of TSM scheduler

2004-01-07 Thread Prather, Wanda
This always works for me: nohup dsmc sched 2>&1 >/dev/null mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 4:22 PM To: [EMAIL PROTECTED] Subject: Re: AIX startup of TSM scheduler I've found the following to work pretty well: (dsmc sched 2>&1 >/dev/null &a

Re: AIX startup of TSM scheduler

2004-01-07 Thread Steven Pemberton
I've found the following to work pretty well: (dsmc sched 2>&1 >/dev/null &) The parenthesis drop it into a sub-shell and cleanly detaches from your current session. Regards, Steven P. -- Steven Pemberton Senior Enterprise Management Consultant IBK, Senetas Group Mobile: +61/0 418 335 136 | Ph

Re: AIX startup of TSM scheduler

2004-01-07 Thread Patrick Boutilier
If you have screen installed just start up a screen session and run: dsmc sched Then Ctrl-A , Ctrl-D If you need to get back into the screen: screen -R Coats, Jack wrote: Ok, I am showing my old age/lack of memory/in-experience in this area, but: I need to reset the passwords for a coupl

Re: AIX startup of TSM scheduler

2004-01-07 Thread Frost, Dave
g init, or from the command line... if ! pgrep -f "dsmc sched -se.*=$server" >/dev/null 2>&1 then print "/bin/dsmc sched -se=$server >/dev/null 2>&1 Subject: Re: AIX startup of TSM scheduler Sent by: &

Re: AIX startup of TSM scheduler

2004-01-07 Thread Warren, Matthew (Retail)
n't work...why do you _have_ to say #>exit #>bg #>exit ? Thanks, Matt. -Original Message- From: David McClelland <[EMAIL PROTECTED]>@EME Sent: Wednesday, January 07, 2004 9:23 AM To: [EMAIL PROTECTED]

Re: AIX startup of TSM scheduler

2004-01-07 Thread David McClelland
Jack, Getting a manually invoked nohup-ed TSM scheduler to stick around in AIX has caused a few problems in the past - a look in the archives will probably reveal that. There's some funny thing that I seem to remember about redirected stdout nohup-ed processes dying - I recall that this seemed to

Re: AIX startup of TSM scheduler

2004-01-06 Thread Bob Booth - UIUC
I usually put the startup in /etc/rc.local, but you can put it in /etc/inittab (not respawn), or /etc/rc.tcpip. As root, to restart the sched process and detach it: # sh -c "/bin/dsmc sched > /dev/null 2>&1 &" If placing in an rc file, remember to background it '&', probably the inittab as well.