Re: Month End Strategies (TDP for Exchange)

2004-03-30 Thread Redell, Greg S.
I looked into this a while ago but I never got as far as answering this
question:

With the way that Exchange implements its backups, if you did a full
backup to a different storage pool w/ different name.  Would you have to
follow that backup with a full to your normal backup pool so that the
logs would back up to the correct pool and be useable?

-Greg

-Original Message-
From: Ochs, Duane [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 30, 2004 2:14 PM
To: [EMAIL PROTECTED]
Subject: Re: Month End Strategies (TDP for Exchange)

I use a second server name for long term retention and some logic in the
CMD
file to chose which day to run it. Separate options file with the
retention
period and could even use separate disk pool if you want.

Duane Ochs
Enterprise Computing
Quad/Graphics Inc
Sussex, Wisconsin

-Original Message-
From: Wayne Prasek [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 30, 2004 11:20 AM
To: [EMAIL PROTECTED]
Subject: Month End Strategies (TDP for Exchange)


I'm wondering what the best strategy to get a month end backup of
Exchange
going.  We would like to keep the backup for an indefinite amount of
time
(most likely a few years).  The backup tape(s) will be sent offsite.
Currently we have a nightly backup of Exchange which expires after 30
days.

I have a couple ideas on how to accomplish this.  I want to hear what
other people are doing.   Thanks in advance.

***
 Wayne Prasek
 I.T. Support Analyst (Server)
 204-985-1694
 [EMAIL PROTECTED]
***


Re: TDP backups for Domino Partitions

2004-03-18 Thread Redell, Greg S.
I know that multiple partitions on a Windows system requires that you
pass a config file to tdp at the backup command.  Such as:

start /B domdsmc selective * /loggedonly /subdir=yes
/adsmoptfile=h:\tsm\dsm.opt /logfile=h:\tsm\domssch.log
/configfile=h:\tsm\domino.cfg >> h:\tsm\domsel.log


With the config file looking something like:

LastPruneDate  03/11/2004 14:20:54
NOTESInipath  h:\Gd2
LOGFile  h:\TSM\domino\domdsm.log
LOGPRUne  60
BUFFers  8
BUFFERSIze  2048
REPlace  No
SUBDir  Yes
MOUNTWait  Yes


It is the config file that points TDP to the notes.ini



-Original Message-
From: Eduardo Esteban [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 18, 2004 10:06 AM
To: [EMAIL PROTECTED]
Subject: Re: TDP backups for Domino Partitions

Yes, there is only one dsm.sys file, but you can have multiple TSM
server
definitions/stanzas in it.
So you could add a second stanza:

SErvername  TSM2
COMMmethod TCPip
TCPPort1500
TCPServeraddress   10.182.98.222
NODENAME   NODE_A
PASSWORDACCESS GENERATE

and have a second dsm.opt

servername TSM2

for your second partition.

Eduardo



"ADSM: Dist Stor Manager" <[EMAIL PROTECTED]> wrote on 03/18/2004
06:46:32 AM:

> Hi

> I have 2 domino partions running on a pseries. I have configured the
TDP
> according to what was specified in the Redbook. Both partions need to
be
> backed up using the same TSM Server.
> 
> The dsm.sys file for 1st Domino partition is -

> SErvername  TSM
> COMMmethod TCPip
> TCPPort1500
> TCPServeraddress   10.182.98.222
> NODENAME   NODE_A
> PASSWORDACCESS GENERATE
>
> include *.TXN MC_DOMINO_ARCHIVE
> tcpbuffsize 256
> tcpnodelay yes
> largecommbuffers yes
> txnbytelimit 51200
> compression no
> 
> The dsm.opt file says -

> SErvername  TSM
> 

> domdsmc executable gives me option to specify different opt files but
not
> different sys files. In this case how do I specify a nodename for the
> second partition? Unless I specify the 2nd nodename I will not be able
to
> take the backup of NODE_B.

> Comments please

> Thanks and Regards
> Anoop


Another question on Move nodedata

2004-03-10 Thread Redell, Greg S.
If I do a move nodedata on for a node from one pool to another is the
copy information from the old pool deleted also or does it remain out
there forever?

Storage pool backups defined as such 
Backup stgpool PoolA  to  copypoolA
Backup Stgpool PoolB  to  copypoolB

Move nodedata from PoolA to PoolB.  What happens to the copy data in
copypoolA



Greg Redell
Great-West Life & Annuity Insurance Co.
Phone: 314-543-7009
Email: [EMAIL PROTECTED]


Re: is there a way to.....

2004-03-08 Thread Redell, Greg S.
You could do a command line restore and specify -dirsonly and restore
just the directory structure over the top.  Then push down the
permissions on the files.  

Works great if your permissions are assigned at a top level and all
subdirectories inhert and you are using DRMC.  It gets tedious if there
are lots of sub directories with differing permissions.


-Original Message-
From: i love tsm [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 05, 2004 5:15 AM
To: [EMAIL PROTECTED]
Subject: is there a way to.

Hi All

I want to know whether there is a way to restore "only"  ntfs file
permissions on win2k.  We are running tsm server 5.2.2.1 and 5.2
clients.

The reason for this is that last night during some maintenance, a
windows
drive (all directories and files) lost all its permissions. The
directories
and files are still there so all I want to restore is the permissions...

Anyone know of a way to do this with TSM??

Cheers

Chris

_
Use MSN Messenger to send music and pics to your friends
http://www.msn.co.uk/messenger


Re: Stgpool backup script

2004-02-12 Thread Redell, Greg S.
I thought about going down that path, but I wanted to see if it could be
done inside the TSM server's command script.

-Original Message-
From: Thomas Denier [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 12, 2004 2:15 PM
To: [EMAIL PROTECTED]; Redell, Greg S.
Subject: Re: Stgpool backup script

> Currently my backup script is sequential.  I have been wondering if
> there is a way to use all my available drives but I don't want to go
the
> way of using maxpr=2 because some of my backups are very large files
> like 60+ GB in size, I could be doing other things while that goes on.
> 
> I would like to run two different backup stgpools and check every so
> often, if there is only one process running start another backup
> stgpool.
> When all my storage ppols are backed up, kick off the dbbackup
> 
> I think I can handle most of the script through ifs and gotos but my
> problem is determining how many processes are currently running.  The
> SQL return codes don't seem to give me the results of a statement,
> unless I am reading the return codes wrong.
> 
> So far what I have in mind (not exact syntax), and I have 4 drives so
I
> want to run 2 concurrent backups
> 
> If [processes] = 2 goto reschedule
> If [processes] = 1 goto startanotherbackup
> If [processes] = 0 and allbackupscomplete goto dbbackup, volhist,
> devconfig
> 
> I think that I would control what backups I have already done through
> passing of script parameters.
> 
> Am I off my rocker, or is something like this possible?

Offhand, I can only think of one way to do what you have in mind
with TSM server scripts: start all the backups, let them queue up
waiting for tape drives, and poll periodically to see if any
backups are still running. A script could check that by running
a 'select' command to select storage pool backups from the processes
table. A select that does not find any matching table entries will
end with a return code of 11.

That being said, I would be inclined to use scripting facilities
outside of TSM to manage multiple streams of storage pool backups.
I currently do this sort of thing for an OS/390 server using the
Rexx language and the Unix-like facilities provided by the USS
component of OS/390. If our server ran under Unix I could have
done the same thing using Perl. My script starts two background
processes and then goes into a loop in which each iteration waits
for a background process to end and starts another process.


Stgpool backup script

2004-02-12 Thread Redell, Greg S.
Currently my backup script is sequential.  I have been wondering if
there is a way to use all my available drives but I don't want to go the
way of using maxpr=2 because some of my backups are very large files
like 60+ GB in size, I could be doing other things while that goes on.

I would like to run two different backup stgpools and check every so
often, if there is only one process running start another backup
stgpool.
When all my storage ppols are backed up, kick off the dbbackup

I think I can handle most of the script through ifs and gotos but my
problem is determining how many processes are currently running.  The
SQL return codes don't seem to give me the results of a statement,
unless I am reading the return codes wrong.

So far what I have in mind (not exact syntax), and I have 4 drives so I
want to run 2 concurrent backups

If [processes] = 2 goto reschedule
If [processes] = 1 goto startanotherbackup
If [processes] = 0 and allbackupscomplete goto dbbackup, volhist,
devconfig

I think that I would control what backups I have already done through
passing of script parameters.

Am I off my rocker, or is something like this possible?

Greg Redell
Great-West Life & Annuity Insurance Co.
Phone: 314-543-7009
Email: [EMAIL PROTECTED]


Re: What do these numbers mean ?

2004-02-04 Thread Redell, Greg S.
So if you were going to open holes in a firewall, what ports would you
open for the data to go through?  Given that statement about the client
source port, you could not definitively say what port it is going to
come over

-Original Message-
From: Remco Post [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 04, 2004 11:03 AM
To: [EMAIL PROTECTED]
Subject: Re: What do these numbers mean ?

On Wed, 4 Feb 2004 11:57:13 -0500
Zoltan Forray/AC/VCU <[EMAIL PROTECTED]> wrote:

> Thank you (and Richard).
>
> But I am still a little confused on why these numbers vary soo
much.
>
> Besides, I thought the PORT number is 1500/1501 ?   That is what is
> configured ?

The TSM server port (dest) is 1500 per default. The clients source port
is
random and usually somewhere between 32768 and 65535.

The TSM client listener is usually on port 1501.

>
> Is this a firewall thing ?
>
>
>
>
>
> Karel Bos <[EMAIL PROTECTED]>
> Sent by: "ADSM: Dist Stor Manager" <[EMAIL PROTECTED]>
> 02/04/2004 11:18 AM
> Please respond to "ADSM: Dist Stor Manager"
>
>
> To: [EMAIL PROTECTED]
> cc:
> Subject:Re: What do these numbers mean ?
>
>
> TCP portnumber.
>
>
> -Oorspronkelijk bericht-
> Van: Zoltan Forray/AC/VCU [mailto:[EMAIL PROTECTED]
> Verzonden: woensdag 4 februari 2004 17:18
> Aan: [EMAIL PROTECTED]
> Onderwerp: What do these numbers mean ?
>
>
> We are having problems getting a Linux client to perform backups (see
my
> earlier message that has not been responded to...yet !).
>
> What do the numbers after the DNS name mean and how are they relevant
?
> Sometimes the numbers are 4-digitsother times 5 ??
>
> 2/4/2004 10:36:48 AM ANR0406I Session 42860 started for node
AJAX.VCU.EDU
> (Linux86) (Tcp/Ip ajax.vcu.edu(57262)).


--
Met vriendelijke groeten,

Remco Post

SARA - Reken- en Netwerkdiensten  http://www.sara.nl
High Performance Computing  Tel. +31 20 592 8008Fax. +31 20 668 3167

"I really didn't foresee the Internet. But then, neither did the
computer
industry. Not that that tells us very much of course - the computer
industry
didn't even foresee that the century was going to end." -- Douglas Adams


Stop an AUDITDB

2004-01-21 Thread Redell, Greg S.
How do I stop an auditdb on windows? 

I can't wait for it to finish

TIA


Re: anyone had network problems with 3584?

2003-12-17 Thread Redell, Greg S.
I have to admit that I don't use the web interface all that much on the
3584.  But when I do, it seems like I have to go down to it and unplug
the enet cable and plug it back in to get to it.

-Original Message-
From: i love tsm [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 17, 2003 3:10 AM
To: [EMAIL PROTECTED]
Subject: anyone had network problems with 3584?

Hi All

I just wondered if anyone else has had problems with their 3584's and
there
network connectivity.

The two 3584s that I run have both recently gone off the air,i.e I can't
ping them.  They both have green link lights on the NIC. They are set to
100/Full  although I have tried Auto and 100/half.
The network switch port is set to 100/Full and sees a device connected
at
the other end, its sending packets out to the library but not getting
any
back.  I've tried disabling and reenabling ethernet on the libraries.
Do I need to reboot the libaries?  Has anyone else had problems like
this?

TIA
Chris

_
Use MSN Messenger to send music and pics to your friends
http://www.msn.co.uk/messenger


Exchange backup performance

2003-12-15 Thread Redell, Greg S.
Hello all,

I am trying to see if anyone has any quick suggestions on backing up
Exchange 2000.  I am seeing some horrible performance as you can see
from the below stats.  This server has never had speedy TDP backups,
BAclient backups normally are in the 10MB/sec range.

The connection is a gigabit connection, from the tcp transfer tests I
have done with WSTTCP I should be able to hit 18MB/sec.

My Domino servers with 350Gb of data on the same network hit upwards of
14MB/sec.  One thing that I am noticing is that store.exe is consuming
90% of the cpu.

These stats are from a full backup taken when no-one else was using the
TSM server or the exchange server.

12/15/2003 14:23:34 Total storage groups requested for backup:  1
12/15/2003 14:23:34 Total storage groups backed up: 1
12/15/2003 14:23:34 Total storage groups expired:   8
12/15/2003 14:23:34 Total storage groups excluded:  0
12/15/2003 14:23:34 Throughput rate:2,956.63
Kb/Sec
12/15/2003 14:23:34 Total bytes transferred:
55,004,847,682
12/15/2003 14:23:34 Elapsed processing time:
18,167.84 Secs


Does anyone have any suggestions?  Maybe exchange tuning? Anything is
appreciated.

Environment
server
Windows 2000 SP3
5.1.6.2

Client
Windows 2000 SP3
Client BA 5.1.5.15
Client TDP 5.1.5.0
Exchange Server Version: 6.0.6396.1
BUFFers  3
BUFFERSIze  64


Re: TDP Domino GUI Shortcut for Partitions

2003-11-21 Thread Redell, Greg S.
Make sure you edit the shortcut so it goes something like this

C:\TSM\domino\domdsm.exe /adsmoptfile=e:\tsm\domino\dsm.opt
/configfile=e:\tsm\domino\domino.cfg


Look into your TDP for domino directory for domdsmc run this command
line with domdsmc help set.   This will help you create the config file.
With out the config file tdp will try to back up all the partitions on
the server.  You will also need to edit the batch files that run your
selective, incremental, archive and inactivate to include the configfile
option.

If you are running the domino partitions on a MS cluster then all these
files need to stay on a drive that stays with the domino service

-Greg

-Original Message-
From: LeBlanc, Patricia [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 20, 2003 5:17 PM
To: [EMAIL PROTECTED]
Subject: TDP Domino GUI Shortcut for Partitions

Okay I've got the TDP for domino installed on a w2k machine.

The server has 3 domino partitions..I've set the environment
variables as outlined in Section F Multiple Domino server partitions on
tsm server...it also said to create 3 shortcuts to the gui...

Whenever I create the 3 shortcuts and set the notesini path and the log,
all 3 change to the same partition.  What am I missing???

Help is appreciated!


Re: Client : MS Cluster active - active

2003-10-16 Thread Redell, Greg S.
Try running a scheduler in each cluster group.  That way the backups
will happen even if the groups are not on their "normal" nodes.

-Original Message-
From: Ochs, Duane [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 9:55 AM
To: [EMAIL PROTECTED]
Subject: Re: Client : MS Cluster active - active

We did a test and failed the drives from one cluster node to the other
and
the same results, the next scheduled backup only backed up the base
directories with no errors.

Previous day 1.4 million files scanned 21,000+ backed up, day the drives
were failed only 10 files scanned 1 backed up and no error messages.

Scheduler service is not defined in the cluster service, Because the
backup
schedules for these systems would not complete in 12 hours if both
devices
were backed up from one of the two cluster nodes.

Duane

-Original Message-
From: John Monahan [mailto:[EMAIL PROTECTED]
Sent: Monday, October 13, 2003 2:17 PM
To: [EMAIL PROTECTED]
Subject: Re: Client : MS Cluster active - active


"ADSM: Dist Stor Manager" <[EMAIL PROTECTED]> wrote on 10/13/2003
09:44:48 AM:

> TSM Server 5.1.6.2 ( AIX)
> TSM Client 5.1.5.15 (W2K cluster)
>
> Cluster node a - Has drive f$
> Cluster node b - Has drive g$
>
> To apply patches to the systems, nodea f$ is failed to node b, patches
> applied to nodea and rebooted, f$ and g$ are failed to node a, Node b
then
> gets patch and rebooted then g$ is failed back to node b.
>
> At this point, backups can not be performed on either f$ or g$, only
the
top
> level directories are backed up and no failures are indicated in the
Client
> log or the TSM server activity log.

Only top level directories are backed up on f: and g:?  How do you know
this?


> Each node has a scheduler, If I restart the schedulers the scheduled
backups
> run fine at next schedule.

What schedmode are you using?  Is your scheduler service defined in
cluster
administrator?

What if you do a failover without doing the patches part, does the same
thing happen?