Hi Experts,
Looking for your advice I need to backup cluster drive (file level) I have created another node for this created opt also and scheduler service also but when the script runs it fails to identify the drive or location.
Cluster opt
NODENAME DcPRCBSDBS01_cLS
TCPSERVERADDRESS 10.101.7.25
tcpport 1500
ENABLELANFREE Yes
LANFREECommmethod tcpip
LANFREETCPPORT 1500
PASSWORDAccess generate
lanfreetcpserveraddress 10.101.7.21
SCHEDMODe Polling
ERRORLOGName C:\Program Files\Tivoli\TSM\baclient\dsmerror.log
ERRORLOGRetention 7 D
SCHEDLOGName C:\Program Files\Tivoli\TSM\baclient\dsmsched.log
CLUSTERnode yes
CLUSTERDISKSOnly Yes
REVOKEREMOTEACCESS ACCESS
HTTPport 1581
DOMAIN "H:"
DOMAIN "I:"
Script-
@ECHO OFF
rem ==================================================================
rem ==================================================================
set backup_dir="C:\Program Files\Tivoli\TSM\baclient"
cd /d %backup_dir%
rem ==================================================================
rem The 2 lines below put a date and time stamp in a log file for
rem you.
rem
rem Note: You can change "backup.log" to whatever you prefer.
rem ==================================================================
echo Current date is: >> clusterincr.log
date /t < NUL >> clusterincr.log
echo Current time is: >> clusterincr.log
time /t < NUL >> clusterincr.log
rem ==================================================================
rem Now call the command line to do the full backup:
rem
rem Note: You can change "backup.log" to whatever you prefer.
rem ==================================================================
dsmc incr H:\* -su=yes >> clusterincr.log
dsmc incr I:\* -su=yes >> clusterincr.log
Error Log-
Incremental backup of volume 'H:\*'
ANS1228E Sending of object '\\drprcbsdbs01\h$\*' failed.
ANS1153E '\\drprcbsdbs01\h$' is a cluster disk.
IBM Tivoli Storage Manager
Command Line Backup-Archive Client Interface
Client Version 7, Release 1, Level 6.2
Client date/time: 07/10/2017 11:32:45
(c) Copyright by IBM Corporation and other(s) 1990, 2016. All Rights Reserved.
Node Name: DCPRCBSDBS01
Session established with server SPINST1: Windows
Server Version 7, Release 1, Level 7.0
Server date/time: 07/10/2017 11:32:57 Last access: 07/10/2017 11:32:41
Incremental backup of volume 'I:\*'
ANS1228E Sending of object '\\drprcbsdbs01\i$\*' failed.
ANS1153E '\\drprcbsdbs01\i$' is a cluster disk.
although cluster disk syntax is yes in opt.
Prem