Results 1 to 6 of 6
-
08-28-2012, 01:19 PM #1Noob
- Join Date
- Dec 2011
- Posts
- 40
- Thanks
- 10
- Thanked 0 Times in 0 Posts
how to start TSM client scheduler in linux
I have installed and configured TSM client on linux.
I am trying to schedule backups of few file systems, In this process i am trying to restart tsm client scheduler and set it to automatic like we do in windows.
Can some one guide me with the procedure do do it.
Thank You!
-
08-28-2012, 01:34 PM #2Noob
- Join Date
- Dec 2011
- Posts
- 40
- Thanks
- 10
- Thanked 0 Times in 0 Posts
I know that i have to an entry in the inittab file, but can someone help me what should i add in that file
-
08-28-2012, 02:09 PM #3Senior Member
- Join Date
- Apr 2007
- Location
- Oslo, Norway
- Posts
- 248
- Thanks
- 2
- Thanked 17 Times in 17 Posts
Put this in /etc/init.d/tsm
Code:#! /bin/bash # # tsm starts and stops Tivoli Storage Manager Client # # chkconfig: 2345 99 00 # description: Starts and stops Tivoli Storage Manager Client # # config: /opt/tivoli/tsm/client/ba/bin/dsm.sys # processname: dsmc # Source function library. . /etc/init.d/functions # See how we were called. prog="tsm" # Define environment variables PATH=$PATH:/opt/tivoli/tsm/client/ba/bin LANG="en_US" LOCK="/var/lock/subsys/$prog" PID="/var/run/$prog.pid" export LANG start () { echo -n $"Starting $prog: " dsmc schedule > /dev/null 2>&1 & pgrep dsmc > $PID && success RETVAL=$? echo [ $RETVAL -eq 0 ] && touch $LOCK return $RETVAL } stop () { echo -n $"Stopping $prog: " killproc dsmc RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f $LOCK [ $RETVAL -eq 0 ] && rm -f $PID return $RETVAL } rhstatus() { status dsmc } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart) restart ;; status) rhstatus ;; *) echo $"Usage: $0 {start|stop|status|restart}" exit 1 esac exit $?
Run
Code:chmod 755 /etc/init.d/tsm chkconfig --add tsm chkconfig --level 345 tsm on
Last edited by Trident; 08-28-2012 at 02:10 PM. Reason: Fixing bugs
-= Trident =-
-
08-28-2012, 02:56 PM #4
If Microsoft is the answer, I want my problem back!
-
08-28-2012, 03:40 PM #5Noob
- Join Date
- Dec 2011
- Posts
- 40
- Thanks
- 10
- Thanked 0 Times in 0 Posts
I am looking to backup /opt, /prod, /www ........ directories/filesystems and i made these entry on dsm.opt file. Is this right ?
SERVERNAME CREDIT04
DOMAIN "/opt"
DOMAIN "/prod"
DOMAIN "/www"
DOMAIN "/home/pmtplus"
DOMAIN "/etc/syslog.conf"
DOMAIN "/etc/hosts"
DOMAIN "/etc/services"
-
08-28-2012, 05:26 PM #6
Similar Threads
-
can't start scheduler on windows client
By kaelo in forum TSM ClientReplies: 12Last Post: 06-28-2010, 12:29 PM -
Scheduler not coming up after Reboot in REd Had Linux TSM Client
By tsmnovice in forum Backup / Archive DiscussionReplies: 4Last Post: 08-18-2009, 11:37 PM -
Use the Client Acceptor to Start the TSM Scheduler and Web Services
By bhuber2112 in forum TSM ClientReplies: 2Last Post: 10-27-2008, 12:31 PM -
how to start scheduler and web client on linux
By AlanAyala in forum Web GUIReplies: 2Last Post: 08-09-2007, 02:02 AM -
how to start tsm client scheduler on aix?
By martins in forum TSM ClientReplies: 8Last Post: 04-25-2005, 05:19 AM


Reply With Quote

