Re: Re: dsm.sys question

2019-02-27 Thread Bronder, David M
stdlib (carefully, if you're trying to manage multi-line content such as a server stanza) to manage a subset of the content of the dsm.sys file. You could also look at the concat module to generate the dsm.sys file from component files, as long as you manage all the components in Puppet as well

Re: dsm.sys question

2019-02-27 Thread Skylar Thompson
I don't know that this approach would work - Puppet would see that the file differs from the deployed file, and would just overwrite it the next time the agent runs. Puppet would need to manage dsm.sys completely[1] with Rick's desired changes, or those options would have to be taken out

Re: dsm.sys question

2019-02-27 Thread Harris, Steven
Rick The m4 macro processor is a standard unix offering and can do anything from simple includes and variable substitutions to lisp-like processing that will boggle your mind. An m4 macro with some include files and a makefile with a cron job to build your dsm.sys might do the job. Cheers

Re: dsm.sys question

2019-02-27 Thread Skylar Thompson
Hi Rick, I'm not aware of a mechanism that allows one to do that with dsmc/dsm.sys, but Puppet does have the ability to include arbitrary lines in a file, either via a template or directly in a rule definition. Another option would be to use server-side client option sets: https://www.ibm.com

dsm.sys question

2019-02-27 Thread Rhodes, Richard L.
Hello, Our Unix team in implementing a management application named Puppet. They are running into a problem using Puppet to setup/maintain the TSM client dsm.sys files. They create/maintain the dsm.sys as per a template of some kind. If you change a dsm.sys with a unique option, it gets

Re: dsm.sys

2015-10-24 Thread Remco Post
:29, James R Owen <jim.o...@yale.edu> wrote: > > On 10/23/2015 3:18 PM, David Ehresman wrote: >> On AIX, can I put dsm.sys in a directory other than the ba install >> directory? If so, how do I point to it? > su > cd /[installdirectory] > ln -s /

Re: dsm.sys

2015-10-23 Thread Matthew McGeary
Hello David, I believe you can use the DSMI_DIR environment variable to specify the location of the dsm.sys or opt files. Regards, __ Matthew McGeary Technical Specialist - Infrastructure PotashCorp T: (306) 933-8921 www.potashcorp.com From: David Ehresman

dsm.sys

2015-10-23 Thread David Ehresman
On AIX, can I put dsm.sys in a directory other than the ba install directory? If so, how do I point to it? David

Re: dsm.sys

2015-10-23 Thread James R Owen
On 10/23/2015 3:18 PM, David Ehresman wrote: On AIX, can I put dsm.sys in a directory other than the ba install directory? If so, how do I point to it? su cd /[installdirectory] ln -s /[yourlocaldirectory]/dsm.sys ln -s /[yourlocaldirectory]/dsm.opt jim.o...@yale.edu (c#203.494.9201)

altering dsm.sys right before dsmc

2011-03-01 Thread Mario Behring
Hi all, I have to configure a virtualmountpoint option before some backups. The directory name, part of it, is formed by a date...and I will have to append this line in the dsm.sys file everytime I perform this particular backup. Here is the script...the TSM Clent is Red Hat... export ARCHLOG

Re: altering dsm.sys right before dsmc

2011-03-01 Thread Howard Coles
It should if the virtualm exists when the dsmc command is run, but you're going to have one of the longest dsm.sys files after a while. You may want to include something in your script that deletes previous virtual mount point entries so that doesn't happen. See Ya' Howard Coles Jr., RHCE

Re: altering dsm.sys right before dsmc

2011-03-01 Thread Mario Behring
dsm.sys right before dsmc It should if the virtualm exists when the dsmc command is run, but you're going to have one of the longest dsm.sys files after a while. You may want to include something in your script that deletes previous virtual mount point entries so that doesn't happen. See Ya

Re: altering dsm.sys right before dsmc

2011-03-01 Thread Peter Duempert
in dsm.sys VIRTUALMountpoint $(USERDIR) whereby the USERDIR-environment-variable was set before dsmc was called. Being retired now, I can't prove, wether this functionality is still available, but I guess it will be there. Hope this helps, Peter On Tue, 1 Mar 2011, Mario Behring wrote

Re: altering dsm.sys right before dsmc

2011-03-01 Thread Andrew Raibeck
statements in your dsm.sys file. So best to understand first if this is really what is needed to get the job done. That having been said... * Note that DOMAIN is additive, meaning that it is added to whatever is already in your client option files and server-side client option set. * You cannot use

Re: altering dsm.sys right before dsmc

2011-03-01 Thread Peter Duempert
Subject: Re: altering dsm.sys right before dsmc It should if the virtualm exists when the dsmc command is run, but you're going to have one of the longest dsm.sys files after a while. You may want to include something in your script that deletes previous virtual mount point entries so

Re: altering dsm.sys right before dsmc (fwd)

2011-03-01 Thread Peter Duempert
p.duemp...@tu-bs.de To: ADSM: Dist Stor Manager ADSM-L@VM.MARIST.EDU Subject: Re: altering dsm.sys right before dsmc Hi Mario, far back into 1998, when the nowadays TSM was called ADSM, I had a similar problem and asked the list by the following message: http://www.adsm.org/lists/html/ADSM-L/1998

dsm.sys in Solaris zones

2009-06-12 Thread Matthew Large
Hi, I am becoming slightly less befuddled by Solaris zones and TSM, but I have a question I'm betting is quite simple: Does TSM only use which ever dsm.sys is visible (in the appropriate directory) from the zone it's running in? eg. a backup started from Zone1 will always reference /export

Re: HI! WHY dsm.sys dsm.opt why not a single file on client side

2008-12-01 Thread Zoltan Forray/AC/VCU
The DSM.SYS is also configurable with multiple stanza for different nodes/options and the DSM.OPT (on *NIX platforms) is used to select the stanza. For example, I have Domino servers on Solaris that have 6-server instances. They require 3-different TSM nodes each (Logs, Incremental, Selective

Re: HI! WHY dsm.sys dsm.opt why not a single file on client side

2008-12-01 Thread srinivas ryiad
HI! thanks to everyone of u srinivas

HI! WHY dsm.sys dsm.opt why not a single file on client side

2008-11-26 Thread srinivas ryiad
HI! WHY dsm.sys dsm.opt why not a single file on client side any specifc reason? thanks

Re: HI! WHY dsm.sys dsm.opt why not a single file on client side

2008-11-26 Thread Wanda Prather
On UNIX systems, multiple users can log in under their own non-root userids. Options in dsm.opt are those that a non-root user can set. Those in dsm.sys are the options that only root should set. These days UNIX systems in most sites are application servers, where users don't log

Re: HI! WHY dsm.sys dsm.opt why not a single file on client side

2008-11-26 Thread Remco Post
On 26 nov 2008, at 14:18, srinivas ryiad wrote: HI! WHY dsm.sys dsm.opt why not a single file on client side any specifc reason? dsm.sys contains the system configuration, dsm.opt contains the default arguments to dsm/dsmc, the latter can be overridden on the command-line. thanks

Re: HI! WHY dsm.sys dsm.opt why not a single file on client side

2008-11-26 Thread Alex Paschal
Hello, Srinivas. Normally the root user administers the dsm.sys file, setting things like connection and logging options in various stanzas available to everyone. Each user can have its own dsm.opt, or even multiple dsm.opt's, defining more or less how its client behaves and which stanza

Re: SECOND TIME SENDING: multiple dsm.opt - dsm.sys and tdpo.opt

2007-09-25 Thread goc
hi, you can use one dsm.sys file simply linking to $DSM_HOME/dsm.sys file from your API directory each client has to have own opt file dsm.sys part example: SERVERNAME ARIS62_tdpo COMMmethod TCPip TCPPort1500 TCPServeraddress axptsm01

Re: SECOND TIME SENDING: multiple dsm.opt - dsm.sys and tdpo.opt

2007-09-25 Thread Shaw, Dan
- dsm.sys and tdpo.opt hi, you can use one dsm.sys file simply linking to $DSM_HOME/dsm.sys file from your API directory each client has to have own opt file dsm.sys part example: SERVERNAME ARIS62_tdpo COMMmethod TCPip TCPPort1500 TCPServeraddress axptsm01

SECOND TIME SENDING: multiple dsm.opt - dsm.sys and tdpo.opt

2007-09-24 Thread Shaw, Dan
Oracle via RMAN DSMI_ORC_CONFIG/usr/tivoli/tsm/client/oracle/bin64/dsm.opt There is also a dsm.sys file in the working directory of oracle which is used but is the same as the standard UNIX backup dsm.sys located in another directory So my question is... Is there a need for multiple dsm.opt

Re: SECOND TIME SENDING: multiple dsm.opt - dsm.sys and tdpo.opt

2007-09-24 Thread Larry Clark
They are separate clients requiring separate opt files. - Original Message - From: Shaw, Dan [EMAIL PROTECTED] To: ADSM-L@VM.MARIST.EDU Sent: Monday, September 24, 2007 10:23 AM Subject: [ADSM-L] SECOND TIME SENDING: multiple dsm.opt - dsm.sys and tdpo.opt I was wondering if anybody had

multiple dsm.opt - dsm.sys and tdpo.opt

2007-09-20 Thread Shaw, Dan
/dsm.opt There is also a dsm.sys file in the working directory of oracle which is used but is the same as the standard UNIX backup dsm.sys located in another directory So my question is... Is there a need for multiple dsm.opt files and dsm.sys files or can the Oracle / Unix and any other type of backup

dsm.sys on AIX

2005-11-08 Thread Luc Beaudoin
Hi all I have a little blank ... If I change some include / exclude on my AIX server (DSM.sys) Do I have to do something to make the new changes active ??? thanks Luc Beaudoin Administrateur Réseau / Network Administrator Hopital General Juif S.M.B.D. Tel: (514) 340-8222 ext:8254

Re: dsm.sys on AIX

2005-11-08 Thread Ochs, Duane
Yes you have to stop and start the scheduler. -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Luc Beaudoin Sent: Tuesday, November 08, 2005 1:58 PM To: ADSM-L@VM.MARIST.EDU Subject: dsm.sys on AIX Hi all I have a little blank ... If I change

Re: dsm.sys on AIX

2005-11-08 Thread Luc Beaudoin
To: ADSM-L@VM.MARIST.EDU cc: Subject:Re: dsm.sys on AIX Yes you have to stop and start the scheduler. -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Luc Beaudoin Sent: Tuesday, November 08, 2005 1:58 PM To: ADSM-L

Re: dsm.sys on AIX

2005-11-08 Thread Andrew Raibeck
@VM.MARIST.EDU wrote on 2005-11-08 12:58:31: Yes you have to stop and start the scheduler. -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Luc Beaudoin Sent: Tuesday, November 08, 2005 1:58 PM To: ADSM-L@VM.MARIST.EDU Subject: dsm.sys on AIX

dsm.sys

2004-11-04 Thread Kevin Doyle
Hello all, I am setting up a virtual node. The enviroment variable DSM_DIR for the virtual node has been set up to point to a different dsm.sys file than the real node. I am getting this message: ANS1036S Invalid option 'COMMMETHOD' found in options file '/common/global/etc/vnodes/fmavadm

Re: dsm.sys

2004-11-04 Thread Richard Sims
On Nov 4, 2004, at 10:28 AM, Kevin Doyle wrote: ... ANS1036S Invalid option 'COMMMETHOD' found in options file '/common/global/etc/vnodes/fmavadm/dsm.sys'... Did someone place the option in the frontal portion of the dsm.sys file whereas it needs to be within a server stanza? (FYI, compiled notes

Bad dsm.sys file? Backing up to wrong management class.

2004-10-25 Thread Chris Hund
Hi all, I discovered something very strange with one of my nodes today. The management class configured for this node in the dsm.sys file (set with DIRMC) is not the MC this node is sending its data to. I discovered that this node is actually using the default MC and tape pool. I can do

Re: Bad dsm.sys file? Backing up to wrong management class.

2004-10-25 Thread Richard Sims
On Oct 25, 2004, at 1:33 PM, Chris Hund wrote: I discovered something very strange with one of my nodes today. The management class configured for this node in the dsm.sys file (set with DIRMC) is not the MC this node is sending its data to. I discovered that this node is actually using

Re: Bad dsm.sys file? Backing up to wrong management class.

2004-10-25 Thread Stapleton, Mark
From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Chris Hund I discovered something very strange with one of my nodes today. The management class configured for this node in the dsm.sys file (set with DIRMC) is not the MC this node is sending its data to. I discovered

Re: Bad dsm.sys file? Backing up to wrong management class.

2004-10-25 Thread Curtis Stewart
PROTECTED] cc Subject Re: Bad dsm.sys file? Backing up to wrong management class. From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Chris Hund I discovered something very strange with one of my nodes today. The management class configured for this node in the dsm.sys

Multiple nodes in dsm.opt (or dsm.sys).

2004-08-12 Thread Todd Lundstedt
time I have had to do this on AIX). I had intended to keep the dsm.opt, dsm.sys, schedule logs, inclexcl list, and error logs for the local filesystems in /usr/tivoli/tsm, and the dsm.opt, dsm.sys, logs and list for the shared resource groups on the shared disks. I need to be able to have different

dsm.sys problem or question !!!!

2004-07-13 Thread Luc Beaudoin
with the command prompt and it worked .. Any idea . this is my dsm.sys file ... thanks Luc Beaudoin TSM/SAN/Network Administrator Hopital General Juif S.M.B.D. Tel: (514) 340-8222 ext:8254 SErvername jghbackup COMMmethod TCPip TCPPort1500 TCPServeraddress

Re: dsm.sys problem or question !!!!

2004-07-13 Thread Sung Y Lee
Manager [EMAIL PROTECTED] Subject .EDU dsm.sys problem or question

Re: dsm.sys problem or question !!!!

2004-07-13 Thread Andrew Raibeck
is the one that goes unasked. The command line is your friend. Good enough is the enemy of excellence. Luc Beaudoin [EMAIL PROTECTED] Sent by: ADSM: Dist Stor Manager [EMAIL PROTECTED] 07/13/2004 11:43 Please respond to ADSM: Dist Stor Manager To [EMAIL PROTECTED] cc Subject dsm.sys problem

Solaris 8 client dsm.sys file question.

2004-02-13 Thread Ben Bullock
Folks, I was looking through our documentation and I find that I have not documented a good example of what a dsm.sys file for a Solaris client should be. It looks like on our systems our txnbytelimit, tcpbuffsize tcpwindowsize are all over the board. Anybody have a good

Re: dsm.sys

2003-06-09 Thread Deon George
/var/opt/oracle/ata/tools domain /var/opt/oracle/ata/control1 domain /var/opt/oracle/ata/control2 domain /var/opt/oracle/ata/control3 domain /var/adm/oracle/ata domain /etc/opt/oracle/ata subdir yes quiet The following is in the dsm.sys: servernameTSM01 COMMMethodTCPIP

dsm.sys

2003-06-06 Thread Keith Garcia
/control2 domain /var/opt/oracle/ata/control3 domain /var/adm/oracle/ata domain /etc/opt/oracle/ata subdir yes quiet The following is in the dsm.sys: servernameTSM01 COMMMethodTCPIP TCPPort1500 TCPServeraddress tsmbackup.carilion.com NODENAMEata TCPClientaddress

Re: schedules with diff dsm.sys on AIX

2002-10-04 Thread Raghu S
Hi Kurt -optfile option is to use with dsm.opt file.I want to use it with dsm.sys file on AIX.can i use -optfile option for dsm.sys?? My purpose of using diff dsm.sys is taking backup of the same server with diff include-exclude list at diff timings to diff storage pools onto the same TSM

Re: schedules with diff dsm.sys on AIX

2002-10-04 Thread Hooft, Jeroen
Use the 2 different opt files as mentioned before. In those opt-files you refer to different TSM servers (at least different settings) So dsm.opt will state: ServernameTSM_inclAll and dsm2.opt will state ServernameTSM_exclMP3 in dsm.sys you will then need two different server

Re: schedules with diff dsm.sys on AIX

2002-10-04 Thread Raghu S
Thanks Jeroen.Its working Raghu. Hooft, Jeroen Jeroen.Hooft@ATOSOTo: [EMAIL PROTECTED] RIGIN.COM cc: Sent by: ADSM:Subject: Re: schedules with diff dsm.sys

Re: dsm.sys / dsm.opt

2002-07-01 Thread David Longo
[EMAIL PROTECTED] 06/29/02 10:18AM Are dsm.opt and dsm.sys comapatible across releases. We've just copied these files from a 2.6 client to a 4.2 client. Were there any enhancements, ommissions? MMS health-first.org made the following annotations on 07/01/2002 11:11:18 AM

dsm.sys / dsm.opt

2002-06-29 Thread Wholey, Joseph (TGA\\MLOL)
Are dsm.opt and dsm.sys comapatible across releases. We've just copied these files from a 2.6 client to a 4.2 client. Were there any enhancements, ommissions?

AW: dsm.opt / dsm.sys / 1Gb ethernet question.

2002-02-16 Thread Rupp Thomas (Illwerke)
regards Thomas Rupp -Ursprüngliche Nachricht- Von: Jason Morgan [SMTP:[EMAIL PROTECTED]] Gesendet am: Samstag, 16. Februar 2002 12:16 An: [EMAIL PROTECTED] Betreff: dsm.opt / dsm.sys / 1Gb ethernet question. Hi This will probably seem like an obvius question. I

Re: dsm.sys file not being read in aix

2001-06-19 Thread Richard Sims
Having include/excludes in the dsm.sys file works, it's just not the preferred method. If you need to adjust your includes/excludes, and a dsmc sched process is running, the process will not pick up the changes to dsm.sys since it is read only upon startup. By placing the list in an inclexcl file

Re: dsm.sys file not being read in aix

2001-06-19 Thread Michael Oski
Richard, I'll give it a try, I was basically stating my understanding of the documentation. It seemed that the point of the scheduler need to be restarted after changing the dsm.opt or dsm.sys files is made, but no mention that the same was true for the inclexcl file. I assumed

Re: dsm.sys file not being read in aix

2001-06-15 Thread Loon, E.J. van - SPLXM
Hi Nick! The manual Using the Backup-Archive Clients (SH26-4105) states on page 108: Place this option in the Include-Exclude options file or the client system options file (dsm.sys). So adding exclude and include options to the dsm.sys should work according to the manual. I haven't tried

Re: dsm.sys file not being read in aix

2001-06-15 Thread Peter Bjoern
So adding exclude and include options to the dsm.sys should work according to the manual. I haven't tried it myself, but either the manual is wrong or... you are? Hi Eric Well, we only have our include/exclude entries in the dsm.sys files on our AIX nodes, and that works just fine, so ... Best

Re: dsm.sys file not being read in aix

2001-06-15 Thread Michael Oski
Having include/excludes in the dsm.sys file works, it's just not the preferred method. If you need to adjust your includes/excludes, and a dsmc sched process is running, the process will not pick up the changes to dsm.sys since it is read only upon startup. By placing the list in an inclexcl file

Re: dsm.sys file not being read in aix

2001-06-14 Thread Lau, Ming
Dave, Need to re-start the scheduler after the change. Ming Lau System Administrator Lam Research -Original Message- From: Pace, David K [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 13, 2001 2:56 PM To: [EMAIL PROTECTED] Subject: dsm.sys file not being read in aix We updated

Re: dsm.sys file not being read in aix

2001-06-14 Thread Indra Gunawan
Hi Dave, Firstly, after you edit the dsm.sys shutdown or kill the scheduler process. You check it by using ps -ef | grep dsmc sched. Then, start it up again such as this at the prompt : # /usr/lpp/adsm/bin/dsmc sched /dev/null 21 Hope it works. salam, # ./indra --- Burks, Dan [EMAIL

Re: dsm.sys file not being read in aix

2001-06-14 Thread Nicholas Cassimatis
And don't forget - on the *ix systems, the include/exclude list is kept in a separate file, normally inclexcl.txt, so adding the lines to dsm.sys won't work. Nick Cassimatis [EMAIL PROTECTED]

Re: dsm.sys file not being read in aix

2001-06-13 Thread Lindsay Morris
dsm.sys is only read when the client starts up. Look at using cloptsets - they are read every time a backup happens, even if the client SW has been running all week and you changed the cloptset yesterday. -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED

dsm.sys file not being read in aix

2001-06-13 Thread Pace, David K
We updated a dsm.sys file to take out excludes within the 12 hour window before the scheduled backup. 10 hours later when the backup ran as scheduled it backed up the server but ignored the updates made to the dsm.sys file. Isn't the dsm.sys file read each time a backup runs

Re: dsm.sys file not being read in aix

2001-06-13 Thread Burks, Dan
Dave, I believe the dsm.sys file is only read at the time you start the scheduler. -Original Message- From: Pace, David K [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, June 13, 2001 2:56 PM To: [EMAIL PROTECTED] Subject: dsm.sys file not being read in aix We updated

AFSbackupmntpnt NO in dsm.sys / dsm.opt

2000-12-15 Thread Peter Dümpert
Hi *SM'ers, 1. I'd like to know if anyone is using this option in the following format: AFSbackupmntpnt NO or the DFS-pendant DFSbackupmntpnt NO 2. anyone using this option in the above form could they report on positive or BAD experiences (e.g. having trouble by users doing

Re: AFSbackupmntpnt NO in dsm.sys / dsm.opt

2000-12-15 Thread Brian T. Huntley
for the backup volume (which gets updated every night)for every volume we want to back up. The script also updates the dsm.opt and dsm.sys files to include all of the requisite virtualmountpoint and domain entries, then restarts "dsmc sched" The downside to this is the processing necessary

Re: AFSbackupmntpnt NO in dsm.sys / dsm.opt

2000-12-15 Thread Alexander Verkooijen
Hi, We're using 'DFSBACKUPMNTPNT NO'. We never had any trouble with it. Of course it would go wrong when a user decides to create an endless loop or does his own mounts somewhere, just like you said. But what is the worst thing that could happen when one of these thing occurs? Sure, your

Configuring dsm.sys and dsm.opt for multiple clients on one host

2000-11-07 Thread Herb Girard/CanWest/IBM
. In order to do this, we need separate include/exclude lists for the nodes, which requires separate dsm.sys files. The TSM 3.7 "Installing the clients" manual (p.34) says "Do not put any user created files into /usr/tivoli/tsm/clients/ba/bin, the directory into which the TSM produ

Re: Configuring dsm.sys and dsm.opt for multiple clients on one host

2000-11-07 Thread Joerg Pohlmann/CanWest/IBM
Herb, why don't you use client option sets - that way you don't put anything into any of the TSM client directories and furthermore, any change can be done at the TSM server via Web Admin as opposed to having to go to the client and editing dsm.sys/opt files. Joerg Pohlmann "Herb Girard/Ca