Returncode for a TDP CMD Script

2009-09-11 Thread Stefan Holzwarth
Hi,

we are using a Windows cmd Script for tdp Backups.
At the TSM Server the schedule is defined as:

tsm: TSMA>q sched tdp sql23full_SERVER33 f=d
Policy Domain Name: TDP
 Schedule Name: SQL23FULL_SERVER33
   Description: FULL Backup SQL d...@23:00
Action: Command
   Options:
   Objects: c:\adsm32\tdpsql\sqlbackup.cmd
/tdpmode:full
  Priority: 5


The tdpsql.exe returncode is stored in a variable %tdperror% within the
script sqlbackup.cmd and used for sending an error email. The CMD Job
ends with the line

exit /b %tdperror%   and should return the original error code to the
tsm scheduler.

Sometimes the backup gets an error and the error email is sent
correctly.
But from the tsm server sight the schedule is always successful.

I don't have an idea where to look further.
Instead of using exit /b I used a freeware tool errorlvl.exe to set the
returncode manually - no change in behavior.

Kind regards
Stefan Holzwarth


Mutliple nodes one on server with scheduler

2009-09-11 Thread Alexander Födisch

Hi,

we have configured two tsm-nodes on one server (running on linux).
Running manually from the commandline we can save data from both nodes.

But unfortunately only one of the nodes (GPFSDATA) is running by the scheduler. 
The other one (ZENTGPFSN01) never starts
by the scheduler - but "q sched" looks good.


Here the dsm.sys


SErvername  GPFSDATA
   COMMMethod   TCPip
   TCPPort  1500
   TCPServeraddress 
   NODENAME ZENTGPFSDATA.EVA.MPG.DE
   Passwordaccess   generate
   passworddir  /gpfs/CONFIG/TSM
   MEMORYEFFICIENTBACKUPYES

* logfiles
   errorlogname /var/log/adsm/gpfsdata/dsmerror.log
   schedlogname /var/log/adsm/gpfsdata/dsmsched.log

   DOMAIN  ALL-LOCAL  -/ -/boot -/var -/proc -/sys

   exclude.dir /tmp
   exclude.dir /mnt
   exclude.dir /mnt2
   exclude.dir /media
   exclude.dir /var/log/adsm
   exclude /var/.../log.*
   exclude.dir /gpfs/automountdir
   exclude /.../core

* clear log after 7 days
   errorlogretention  7
   schedlogretention  7

   HttpPort 1581
   MANAGEDSERVICES WEBCLIENT

*
* node for system files
*

SErvername  SYSTEM
   COMMMethod   TCPip
   TCPPort  1500
   TCPServeraddress 
   NODENAME ZENTGPFSN01.EVA.MPG.DE
   Passwordaccess   generate
   MEMORYEFFICIENTBACKUPYES

* logfiles
   schedlogname   /var/log/adsm/system/dsmsched.log
   errorlogname   /var/log/adsm/system/dsmerror.log

   DOMAIN / /boot /var

   exclude.dir /tmp
   exclude.dir /mnt
   exclude.dir /mnt2
   exclude.dir /media
   exclude.dir /var/log/adsm
   exclude /var/.../log.*
   exclude.dir /gpfs/automountdir
   exclude /.../core

* clear log after 7 days
   schedlogretention  7
   errorlogretention  7

   MANAGEDSERVICES SCHEDULE





We start two dsmcad-processes by

"/opt/tivoli/tsm/client/ba/bin/dsmcad" and "/opt/tivoli/tsm/client/ba/bin/dsmcad 
-servername=system"

and both processes are running:

# ps aux|grep dsm[c]
root 15907  0.0  0.0  63236  3288 ?SNl  Jun18   0:00 
/opt/tivoli/tsm/client/ba/bin/dsmcad
root 16249  0.0  0.0  30400  2696 ?SNl  Jun18   0:00 
/opt/tivoli/tsm/client/ba/bin/dsmcad -servername=system



Any ideas?

Thanks,
Alex


IBM Passport Advantage unavailable?

2009-09-11 Thread David McClelland
Anyone else having problem connecting to IBM Passport Advantage to download
TSM software:



http://www-01.ibm.com/software/howtobuy/passportadvantage/index.html



It's been unavailable all morning here with a 504 Gateway Timeout error - is
there another way in?



/David Mc

London, UK


Re: IBM Passport Advantage unavailable?

2009-09-11 Thread David McClelland
And what do you know - after being offline all morning, it's *magically*
started working again within 10 minutes of me sending this email.



Perhaps it's like the online Apple Store and there'll be some new goodies on
there for me now to take a look at :O)



/David Mc

London, UK



From: David McClelland [mailto:t...@networkc.co.uk]
Sent: 11 September 2009 10:28
To: 'ADSM: Dist Stor Manager'
Subject: IBM Passport Advantage unavailable?



Anyone else having problem connecting to IBM Passport Advantage to download
TSM software:



http://www-01.ibm.com/software/howtobuy/passportadvantage/index.html



It's been unavailable all morning here with a 504 Gateway Timeout error - is
there another way in?



/David Mc

London, UK


Re: Returncode for a TDP CMD Script

2009-09-11 Thread Andrew Raibeck
Without seeing your script, I suspect that the command that sets the return
code might be running asynchronously rather than synchronously.

I suggest going to the link in my sig and searching on:

   diagnostics for scripts

The first hit might be of use to you.

Best regards,

Andy

Andy Raibeck
IBM Software Group
Tivoli Storage Manager Client Product Development
Level 3 Team Lead
Internal Notes e-mail: Andrew Raibeck/Hartford/i...@ibmus
Internet e-mail: stor...@us.ibm.com

IBM Tivoli Storage Manager support web page:
http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageManager.html


The only dumb question is the one that goes unasked.
The command line is your friend.
"Good enough" is the enemy of excellence.

"ADSM: Dist Stor Manager"  wrote on 2009-09-11
04:01:05:

> [image removed]
>
> Returncode for a TDP CMD Script
>
> Stefan Holzwarth
>
> to:
>
> ADSM-L
>
> 2009-09-11 04:02
>
> Sent by:
>
> "ADSM: Dist Stor Manager" 
>
> Please respond to "ADSM: Dist Stor Manager"
>
> Hi,
>
> we are using a Windows cmd Script for tdp Backups.
> At the TSM Server the schedule is defined as:
>
> tsm: TSMA>q sched tdp sql23full_SERVER33 f=d
> Policy Domain Name: TDP
>  Schedule Name: SQL23FULL_SERVER33
>Description: FULL Backup SQL d...@23:00
> Action: Command
>Options:
>Objects: c:\adsm32\tdpsql\sqlbackup.cmd
> /tdpmode:full
>   Priority: 5
>
>
> The tdpsql.exe returncode is stored in a variable %tdperror% within the
> script sqlbackup.cmd and used for sending an error email. The CMD Job
> ends with the line
>
> exit /b %tdperror%   and should return the original error code to the
> tsm scheduler.
>
> Sometimes the backup gets an error and the error email is sent
> correctly.
> But from the tsm server sight the schedule is always successful.
>
> I don't have an idea where to look further.
> Instead of using exit /b I used a freeware tool errorlvl.exe to set the
> returncode manually - no change in behavior.
>
> Kind regards
> Stefan Holzwarth


Re: Mutliple nodes one on server with scheduler

2009-09-11 Thread Richard Sims

On Sep 11, 2009, at 4:31 AM, Alexander Födisch wrote:


...
We start two dsmcad-processes by

"/opt/tivoli/tsm/client/ba/bin/dsmcad" and "/opt/tivoli/tsm/client/ 
ba/bin/dsmcad -servername=system"



It's not at all apparent in the client manual, but dsmcad recognizes  
and utilizes only one command line option: -OPTFILE.  And dsmcad's  
programming has been deficient over the years such that it offers no  
objection to invalid or inappropriate command line options (APAR  
IC60863 finally addressed this).


You need to follow the instructions provided in the client manual,  
under "Managing multiple schedule requirements on one system", where  
they use the DSM_CONFIG environment variable, which amounts to the  
same thing as -OPTFILE usage.


Be sure to check your dsmwebcl.log and TSM server Activity Log for any  
issues encountered with using CAD.


  Richard Sims  at busy Boston University


Re: end of support tsm 5.5 on z/os ?

2009-09-11 Thread Kinder, Kevin P
Yes, zLinux rings a bell. However, if you don't already have tape and/or
disk infrastructure in place for it,  or if you don't have sufficient
excess capacity in what you do have, you will have to purchase them, as
there is no good way to share these resources between z/OS and z/Linux.
And yes, I'm aware that you could carve out part of your disk from z/OS
and assign it to z/Linux, but that doesn't take into account the
duplicate disk you'd need on both sides of the house while migrating
from one platform to another. 

I have expressed my displeasure in this situation to TSM product
managers. Norman, I'd suggest you do the same. 


-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of
Remco Post
Sent: Thursday, September 10, 2009 6:06 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] end of support tsm 5.5 on z/os ?

On 10 sep 2009, at 23:16, Gee, Norman wrote:

> But there are no other options for us mainframe bigot as TSM 6.x
> server
> does not exist on z/OS.

does zLinux run a bell? I know it's not exactly what you might expect,
but it does run TSM server 6.1.

--
Met vriendelijke groeten,

Remco Post
r.p...@plcs.nl
+31 6 248 21 622


delete volhistory

2009-09-11 Thread Bruno Oliveira
command 'q volhistory'

Date/Time : 04/09/09 9h0min15s BRT
Volume Type : BACKUPINCR
Backup Series : 1
Backup Operation : 1
Volume Seq : 1
Device Class : GENCLASS3
Volume Name : VXA001
Volume Location :
Command :
command 'delete volhistory type=all todate=09/04/2009'

ANR2467I DELETE VOLHISTORY: 0 sequential volume history entries were
successfully deleted.

Why?

 Note: BRT in the date format is dd/mm/yy

-- 
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Re: delete volhistory

2009-09-11 Thread Skylar Thompson
Do you have a subsequent backup series? This would be started by a full
DB backup taken after this incremental backup.

Bruno Oliveira wrote:
> command 'q volhistory'
>
> Date/Time : 04/09/09 9h0min15s BRT
> Volume Type : BACKUPINCR
> Backup Series : 1
> Backup Operation : 1
> Volume Seq : 1
> Device Class : GENCLASS3
> Volume Name : VXA001
> Volume Location :
> Command :
> command 'delete volhistory type=all todate=09/04/2009'
>
> ANR2467I DELETE VOLHISTORY: 0 sequential volume history entries were
> successfully deleted.
>
> Why?
>
>  Note: BRT in the date format is dd/mm/yy
>

--
-- Skylar Thompson (skyl...@u.washington.edu)
-- Genome Sciences Department, System Administrator
-- Foege Building S048, (206)-685-7354
-- University of Washington School of Medicine


Re: delete volhistory

2009-09-11 Thread Lee, Gary D.
Is this your most recent backup series?  If so, tsm will not delete that. Keeps 
you from shooting yourself. 


Gary Lee
Senior System Programmer
Ball State University
phone: 765-285-1310

 
-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of Bruno 
Oliveira
Sent: Friday, September 11, 2009 9:48 AM
To: ADSM-L@VM.MARIST.EDU
Subject: delete volhistory

command 'q volhistory'

Date/Time : 04/09/09 9h0min15s BRT
Volume Type : BACKUPINCR
Backup Series : 1
Backup Operation : 1
Volume Seq : 1
Device Class : GENCLASS3
Volume Name : VXA001
Volume Location :
Command :
command 'delete volhistory type=all todate=09/04/2009'

ANR2467I DELETE VOLHISTORY: 0 sequential volume history entries were 
successfully deleted.

Why?

 Note: BRT in the date format is dd/mm/yy

--
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Re: delete volhistory

2009-09-11 Thread PAC Brion Arnaud
Bruno,

TSM won't let you delete the last full DB backup existing, and therefore the 
incrementals made since then. 
Try to do a new full backup, end re-issue you command : this time it should 
work  !!

Cheers.

Arnaud 

**
Panalpina Management Ltd., Basle, Switzerland,
CIT Department Viadukstrasse 42, P.O. Box 4002 Basel/CH
Phone: +41 (61) 226 11 11, FAX: +41 (61) 226 17 01
Direct: +41 (61) 226 19 78
e-mail: arnaud.br...@panalpina.com
**


-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of Bruno 
Oliveira
Sent: vendredi 11 septembre 2009 15:48
To: ADSM-L@VM.MARIST.EDU
Subject: delete volhistory

command 'q volhistory'

Date/Time : 04/09/09 9h0min15s BRT
Volume Type : BACKUPINCR
Backup Series : 1
Backup Operation : 1
Volume Seq : 1
Device Class : GENCLASS3
Volume Name : VXA001
Volume Location :
Command :
command 'delete volhistory type=all todate=09/04/2009'

ANR2467I DELETE VOLHISTORY: 0 sequential volume history entries were 
successfully deleted.

Why?

 Note: BRT in the date format is dd/mm/yy

--
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Re: delete volhistory

2009-09-11 Thread Bruno Oliveira
Volume history:

Date/Time : 14/07/09 13h22min58s BRT
 Volume Type : BACKUPFULL
   Backup Series : 1
Backup Operation : 0
  Volume Seq : 1
Device Class : GENCLASS3
 Volume Name : VXA201
Volume Location :
 Command :

   Date/Time : 04/09/09 9h0min15s BRT
 Volume Type : BACKUPINCR
   Backup Series : 1
Backup Operation : 1
  Volume Seq : 1
Device Class : GENCLASS3
 Volume Name : VXA001
Volume Location :
 Command :

   Date/Time : 10/09/09 10h28min15s BRT
 Volume Type : BACKUPINCR
   Backup Series : 1
Backup Operation : 2
  Volume Seq : 1
Device Class : GENCLASS3
 Volume Name : VXA002
Volume Location :
 Command :


2009/9/11 Lee, Gary D. 

> Is this your most recent backup series?  If so, tsm will not delete that.
> Keeps you from shooting yourself.
>
>
> Gary Lee
> Senior System Programmer
> Ball State University
> phone: 765-285-1310
>
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of
> Bruno Oliveira
> Sent: Friday, September 11, 2009 9:48 AM
> To: ADSM-L@VM.MARIST.EDU
> Subject: delete volhistory
>
>  command 'q volhistory'
>
> Date/Time : 04/09/09 9h0min15s BRT
> Volume Type : BACKUPINCR
> Backup Series : 1
> Backup Operation : 1
> Volume Seq : 1
> Device Class : GENCLASS3
> Volume Name : VXA001
> Volume Location :
> Command :
> command 'delete volhistory type=all todate=09/04/2009'
>
> ANR2467I DELETE VOLHISTORY: 0 sequential volume history entries were
> successfully deleted.
>
> Why?
>
>  Note: BRT in the date format is dd/mm/yy
>
> --
> abs,
>
> Bruno Oliveira
> Beagá - Minas Gerais - Brazil
> 55 31 9342 4111
>



-- 
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Re: delete volhistory

2009-09-11 Thread Lee, Gary D.
Sir:

Note that all are series 1. You have a full and incramentals.  That constitutes 
a series.

If you wish to delete them you will have to do another full.  That will 
invalidate the previous incramentals and full. 


Gary Lee
Senior System Programmer
Ball State University
phone: 765-285-1310

 
-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of Bruno 
Oliveira
Sent: Friday, September 11, 2009 10:09 AM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: delete volhistory

Volume history:

Date/Time : 14/07/09 13h22min58s BRT
 Volume Type : BACKUPFULL
   Backup Series : 1
Backup Operation : 0
  Volume Seq : 1
Device Class : GENCLASS3
 Volume Name : VXA201
Volume Location :
 Command :

   Date/Time : 04/09/09 9h0min15s BRT
 Volume Type : BACKUPINCR
   Backup Series : 1
Backup Operation : 1
  Volume Seq : 1
Device Class : GENCLASS3
 Volume Name : VXA001
Volume Location :
 Command :

   Date/Time : 10/09/09 10h28min15s BRT
 Volume Type : BACKUPINCR
   Backup Series : 1
Backup Operation : 2
  Volume Seq : 1
Device Class : GENCLASS3
 Volume Name : VXA002
Volume Location :
 Command :


2009/9/11 Lee, Gary D. 

> Is this your most recent backup series?  If so, tsm will not delete that.
> Keeps you from shooting yourself.
>
>
> Gary Lee
> Senior System Programmer
> Ball State University
> phone: 765-285-1310
>
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf 
> Of Bruno Oliveira
> Sent: Friday, September 11, 2009 9:48 AM
> To: ADSM-L@VM.MARIST.EDU
> Subject: delete volhistory
>
>  command 'q volhistory'
>
> Date/Time : 04/09/09 9h0min15s BRT
> Volume Type : BACKUPINCR
> Backup Series : 1
> Backup Operation : 1
> Volume Seq : 1
> Device Class : GENCLASS3
> Volume Name : VXA001
> Volume Location :
> Command :
> command 'delete volhistory type=all todate=09/04/2009'
>
> ANR2467I DELETE VOLHISTORY: 0 sequential volume history entries were 
> successfully deleted.
>
> Why?
>
>  Note: BRT in the date format is dd/mm/yy
>
> --
> abs,
>
> Bruno Oliveira
> Beagá - Minas Gerais - Brazil
> 55 31 9342 4111
>



--
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


data protection for Oracle and BA client

2009-09-11 Thread Avy Wong
Hello,
  I have a Linux server (Red Hat Enterprise Linux Server release 5.3
(Tikanga)) that I will be installing data protection for Oracle and BA
client on it.
Can you tell me what versions should I be installing, or if you can point
me the direction to look for it. The TSM Server (AIX-RS/6000)  Version 5,
Release 4, Level 3.0. Thanks.


Avy Wong
Business Continuity Administrator
Mohegan Sun
1 Mohegan Sun Blvd
Uncasville, CT 06382
(860)862-8164
(cell) (860)961-6976


Re: Erro - backup of the client Linux

2009-09-11 Thread Bruno Oliveira
I need to backup only the directory /home/ifwiset. The dsm.sys file is as
follows:

exclude *
include /home/ifwiset /.../*

When you run the command schedule the backup is done a full backup of the /.


2009/9/10 Andrew Raibeck 

> I don't quite understand the problem being described, but a couple of
> things to add to what Richard said:
>
> - If you do not exclude a file or directory from backup, then it is
> implicitly included. If you want to include some file or directories for
> backup, and exclude everything else, then you need to specify something
> like this:
>
>   exclude *
>   include /dir1/.../*
>   include /dir2/.../*
>   include /home/andy/.../*
>
> - The "exclude" statement excludes file objects from backup, but directory
> objects are still backed up. For example:
>
>   exclude /home/andy/.../*
>
> excludes all files in /home/andy, but backs up directory entries
> under /home/andy such as /home/andy/dir1, /home/andy/dir2,
> and /home/andy/temp
>
> To prevent the backup of everything in /home/andy, including directory
> entries, do this:
>
>   exclude.dir /home/andy
>
> Best regards,
>
> Andy
>
> Andy Raibeck
> IBM Software Group
> Tivoli Storage Manager Client Product Development
> Level 3 Team Lead
> Internal Notes e-mail: Andrew Raibeck/Hartford/i...@ibmus
> Internet e-mail: stor...@us.ibm.com
>
> IBM Tivoli Storage Manager support web page:
>
> http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageManager.html
>
>
> The only dumb question is the one that goes unasked.
> The command line is your friend.
> "Good enough" is the enemy of excellence.
>
> "ADSM: Dist Stor Manager"  wrote on 2009-09-10
> 18:15:09:
>
> > [image removed]
> >
> > Erro - backup of the client Linux
> >
> > Bruno Oliveira
> >
> > to:
> >
> > ADSM-L
> >
> > 2009-09-10 18:16
> >
> > Sent by:
> >
> > "ADSM: Dist Stor Manager" 
> >
> > Please respond to "ADSM: Dist Stor Manager"
>  >
> > I set up a TSM server 5.5 to perform backups from Linux (RHLE 5), made
> the
> > required settings but when you start the schedule is made up of
> directories
> > that are not included in the field include.backup.
> >
> > Does anyone know why?
> > --
> > abs,
> >
> > Bruno Oliveira
> > Beagá - MG
> > (31) 9342-4111
>



-- 
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Re: Erro - backup of the client Linux

2009-09-11 Thread Schneider, Jim
You have a space between ifwiset an /.../*
If that's present in your dsm.sys file, try removing it and running 'dsmc q 
inclexcl' again.

Jim

-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of Bruno 
Oliveira
Sent: Friday, September 11, 2009 12:51 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] Erro - backup of the client Linux

I need to backup only the directory /home/ifwiset. The dsm.sys file is as
follows:

exclude *
include /home/ifwiset /.../*

When you run the command schedule the backup is done a full backup of the /.


2009/9/10 Andrew Raibeck 

> I don't quite understand the problem being described, but a couple of
> things to add to what Richard said:
>
> - If you do not exclude a file or directory from backup, then it is
> implicitly included. If you want to include some file or directories for
> backup, and exclude everything else, then you need to specify something
> like this:
>
>   exclude *
>   include /dir1/.../*
>   include /dir2/.../*
>   include /home/andy/.../*
>
> - The "exclude" statement excludes file objects from backup, but directory
> objects are still backed up. For example:
>
>   exclude /home/andy/.../*
>
> excludes all files in /home/andy, but backs up directory entries
> under /home/andy such as /home/andy/dir1, /home/andy/dir2,
> and /home/andy/temp
>
> To prevent the backup of everything in /home/andy, including directory
> entries, do this:
>
>   exclude.dir /home/andy
>
> Best regards,
>
> Andy
>
> Andy Raibeck
> IBM Software Group
> Tivoli Storage Manager Client Product Development
> Level 3 Team Lead
> Internal Notes e-mail: Andrew Raibeck/Hartford/i...@ibmus
> Internet e-mail: stor...@us.ibm.com
>
> IBM Tivoli Storage Manager support web page:
>
> http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageManager.html
>
>
> The only dumb question is the one that goes unasked.
> The command line is your friend.
> "Good enough" is the enemy of excellence.
>
> "ADSM: Dist Stor Manager"  wrote on 2009-09-10
> 18:15:09:
>
> > [image removed]
> >
> > Erro - backup of the client Linux
> >
> > Bruno Oliveira
> >
> > to:
> >
> > ADSM-L
> >
> > 2009-09-10 18:16
> >
> > Sent by:
> >
> > "ADSM: Dist Stor Manager" 
> >
> > Please respond to "ADSM: Dist Stor Manager"
>  >
> > I set up a TSM server 5.5 to perform backups from Linux (RHLE 5), made
> the
> > required settings but when you start the schedule is made up of
> directories
> > that are not included in the field include.backup.
> >
> > Does anyone know why?
> > --
> > abs,
> >
> > Bruno Oliveira
> > Beagá - MG
> > (31) 9342-4111
>



-- 
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Re: Erro - backup of the client Linux

2009-09-11 Thread Bruno Oliveira
No space. Command 'dsmc q inclexcl':


tsm> q inclexcl
*** FILE INCLUDE/EXCLUDE ***
Mode Function  Pattern (match from top down)  Source File
 - -- -
No exclude filespace statements defined.
Excl Directory /.../.TsmCacheDir  TSM
Include All   /home/ifwiset/.../*
/opt/tivoli/tsm/client/ba/bin/dsm.sys
Exclude All   /.../*
/opt/tivoli/tsm/client/ba/bin/dsm.sys
No DFS include/exclude statements defined.
tsm>

2009/9/11 Schneider, Jim 

> You have a space between ifwiset an /.../*
> If that's present in your dsm.sys file, try removing it and running 'dsmc q
> inclexcl' again.
>
> Jim
>
> -Original Message-
> From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of
> Bruno Oliveira
> Sent: Friday, September 11, 2009 12:51 PM
> To: ADSM-L@VM.MARIST.EDU
> Subject: Re: [ADSM-L] Erro - backup of the client Linux
>
> I need to backup only the directory /home/ifwiset. The dsm.sys file is as
> follows:
>
> exclude *
> include /home/ifwiset /.../*
>
> When you run the command schedule the backup is done a full backup of the
> /.
>
>
> 2009/9/10 Andrew Raibeck 
>
> > I don't quite understand the problem being described, but a couple of
> > things to add to what Richard said:
> >
> > - If you do not exclude a file or directory from backup, then it is
> > implicitly included. If you want to include some file or directories for
> > backup, and exclude everything else, then you need to specify something
> > like this:
> >
> >   exclude *
> >   include /dir1/.../*
> >   include /dir2/.../*
> >   include /home/andy/.../*
> >
> > - The "exclude" statement excludes file objects from backup, but
> directory
> > objects are still backed up. For example:
> >
> >   exclude /home/andy/.../*
> >
> > excludes all files in /home/andy, but backs up directory entries
> > under /home/andy such as /home/andy/dir1, /home/andy/dir2,
> > and /home/andy/temp
> >
> > To prevent the backup of everything in /home/andy, including directory
> > entries, do this:
> >
> >   exclude.dir /home/andy
> >
> > Best regards,
> >
> > Andy
> >
> > Andy Raibeck
> > IBM Software Group
> > Tivoli Storage Manager Client Product Development
> > Level 3 Team Lead
> > Internal Notes e-mail: Andrew Raibeck/Hartford/i...@ibmus
> > Internet e-mail: stor...@us.ibm.com
> >
> > IBM Tivoli Storage Manager support web page:
> >
> >
> http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageManager.html
> >
> >
> > The only dumb question is the one that goes unasked.
> > The command line is your friend.
> > "Good enough" is the enemy of excellence.
> >
> > "ADSM: Dist Stor Manager"  wrote on 2009-09-10
> > 18:15:09:
> >
> > > [image removed]
> > >
> > > Erro - backup of the client Linux
> > >
> > > Bruno Oliveira
> > >
> > > to:
> > >
> > > ADSM-L
> > >
> > > 2009-09-10 18:16
> > >
> > > Sent by:
> > >
> > > "ADSM: Dist Stor Manager" 
> > >
> > > Please respond to "ADSM: Dist Stor Manager"
> >  >
> > > I set up a TSM server 5.5 to perform backups from Linux (RHLE 5), made
> > the
> > > required settings but when you start the schedule is made up of
> > directories
> > > that are not included in the field include.backup.
> > >
> > > Does anyone know why?
> > > --
> > > abs,
> > >
> > > Bruno Oliveira
> > > Beagá - MG
> > > (31) 9342-4111
> >
>
>
>
> --
> abs,
>
> Bruno Oliveira
> Beagá - Minas Gerais - Brazil
> 55 31 9342 4111
>



-- 
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Re: Erro - backup of the client Linux

2009-09-11 Thread Gary Bowers
Is it actually backing up data though?  It will scan the entire drive,  
and backup the directory structure, even though you have excluded it.   
If you are seeing that the schedlog is going into other directories,  
that is normal.  What you have setup looks correct to me.  If you  
don't want to scan the other directories you would need to use  
exclude.dir.


Gary

On Sep 11, 2009, at 1:05 PM, Bruno Oliveira wrote:


No space. Command 'dsmc q inclexcl':


tsm> q inclexcl
*** FILE INCLUDE/EXCLUDE ***
Mode Function  Pattern (match from top down)  Source File
 - -- -
No exclude filespace statements defined.
Excl Directory /.../.TsmCacheDir  TSM
Include All   /home/ifwiset/.../*
/opt/tivoli/tsm/client/ba/bin/dsm.sys
Exclude All   /.../*
/opt/tivoli/tsm/client/ba/bin/dsm.sys
No DFS include/exclude statements defined.
tsm>

2009/9/11 Schneider, Jim 


You have a space between ifwiset an /.../*
If that's present in your dsm.sys file, try removing it and running  
'dsmc q

inclexcl' again.

Jim

-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On  
Behalf Of

Bruno Oliveira
Sent: Friday, September 11, 2009 12:51 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] Erro - backup of the client Linux

I need to backup only the directory /home/ifwiset. The dsm.sys file  
is as

follows:

exclude *
include /home/ifwiset /.../*

When you run the command schedule the backup is done a full backup  
of the

/.


2009/9/10 Andrew Raibeck 

I don't quite understand the problem being described, but a couple  
of

things to add to what Richard said:

- If you do not exclude a file or directory from backup, then it is
implicitly included. If you want to include some file or  
directories for
backup, and exclude everything else, then you need to specify  
something

like this:

 exclude *
 include /dir1/.../*
 include /dir2/.../*
 include /home/andy/.../*

- The "exclude" statement excludes file objects from backup, but

directory

objects are still backed up. For example:

 exclude /home/andy/.../*

excludes all files in /home/andy, but backs up directory entries
under /home/andy such as /home/andy/dir1, /home/andy/dir2,
and /home/andy/temp

To prevent the backup of everything in /home/andy, including  
directory

entries, do this:

 exclude.dir /home/andy

Best regards,

Andy

Andy Raibeck
IBM Software Group
Tivoli Storage Manager Client Product Development
Level 3 Team Lead
Internal Notes e-mail: Andrew Raibeck/Hartford/i...@ibmus
Internet e-mail: stor...@us.ibm.com

IBM Tivoli Storage Manager support web page:



http://www.ibm.com/software/sysmgmt/products/support/IBMTivoliStorageManager.html



The only dumb question is the one that goes unasked.
The command line is your friend.
"Good enough" is the enemy of excellence.

"ADSM: Dist Stor Manager"  wrote on 2009-09-10
18:15:09:


[image removed]

Erro - backup of the client Linux

Bruno Oliveira

to:

ADSM-L

2009-09-10 18:16

Sent by:

"ADSM: Dist Stor Manager" 

Please respond to "ADSM: Dist Stor Manager"

I set up a TSM server 5.5 to perform backups from Linux (RHLE 5),  
made

the

required settings but when you start the schedule is made up of

directories

that are not included in the field include.backup.

Does anyone know why?
--
abs,

Bruno Oliveira
Beagá - MG
(31) 9342-4111






--
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111





--
abs,

Bruno Oliveira
Beagá - Minas Gerais - Brazil
55 31 9342 4111


Customizing tsm client install for windows

2009-09-11 Thread Lee, Gary D.
Tsm client v6.x.
I would like to have a particular set of options added to the dsm.opt on a very 
large number of installs.

Is there a way to automate this into the standard installer?
If so, just a pointer to docs will help.

Thank you all.


Gary Lee
Senior System Programmer
Ball State University
phone: 765-285-1310

 

Re: Customizing tsm client install for windows

2009-09-11 Thread J. Pohlmann
Suggest you use a client option set instead and assign it to the nodes.

Joerg Pohlmann
250-245-9863


-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of
Lee, Gary D.
Sent: Friday, September 11, 2009 12:50
To: ADSM-L@VM.MARIST.EDU
Subject: [ADSM-L] Customizing tsm client install for windows

Tsm client v6.x.
I would like to have a particular set of options added to the dsm.opt on a
very large number of installs.

Is there a way to automate this into the standard installer?
If so, just a pointer to docs will help.

Thank you all.


Gary Lee
Senior System Programmer
Ball State University
phone: 765-285-1310