Re: [Veritas-bu] Keeping more job history in the Activity Monitor

2009-06-11 Thread WEAVER, Simon (external)
If its a windows Server, this may assist...
 
http://seer.entsupport.symantec.com/docs/255255.htm
 
 
S.



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Mark
Glazerman
Sent: Wednesday, June 10, 2009 10:25 PM
To: veritas-bu
Subject: [Veritas-bu] Keeping more job history in the Activity Monitor



Does anyone know how to keep more job history in the activity monitor in
6.5.3 ?

 

I've looked through the settings of the master server and can't find
anything that jumps out at me.

 

Thanks in advance, 

 

Mark Glazerman

Enterprise Storage Administrator

Spartech Corporation

Desk: 314-889-8282

Fax: 314-854-8282

Cell: 618-520-3401

mark.glazer...@spartech.com mailto:mark.glazer...@spartech.com 

http://www.spartech.com http://www.spartech.com/ 

P please don't print this e-mail unless you really need to

This e-mail and any files transmitted with it are confidential, are
intended solely for the use of the addressee, and may be legally
privileged. If you have received this email in error please notify the
sender immediately, and do not copy or forward it.

 


This email (including any attachments) may contain confidential
and/or privileged information or information otherwise protected
from disclosure. If you are not the intended recipient, please
notify the sender immediately, do not copy this message or any
attachments and do not use it for any purpose or disclose its
content to any person, but delete this message and any attachments
from your system. Astrium disclaims any and all liability if this
email transmission was virus corrupted, altered or falsified.
-o-
Astrium Limited, Registered in England and Wales No. 2449259
Registered Office:
Gunnels Wood Road, Stevenage, Hertfordshire, SG1 2AS, England
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Client version

2009-06-11 Thread WEAVER, Simon (external)
Judy
Actually, his name is Mark :-)
 
Simon



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
judy_hinchcli...@administaff.com
Sent: Wednesday, June 10, 2009 5:53 PM
To: mark.donald...@staples.com; sreynol...@semprautilities.com;
ewi...@ewilts.org
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version



Very nice Donald.

 

 

 

 



From: Donaldson, Mark [mailto:mark.donald...@staples.com] 
Sent: Wednesday, June 10, 2009 11:31 AM
To: Judy Hinchcliffe; sreynol...@semprautilities.com; ewi...@ewilts.org
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] Client version

 

Ah.  Let's see.  Change thusly...

 

 

#!/bin/ksh

 

PATH=$PATH:/usr/openv/netbackup/bin:/usr/openv/netbackup/bin/admincmd

 

echo   Client \t OS Level \t Release
echo =\t =\t ===
for c in `bpplclients -allunique -noheader | awk '{print $3}'`
do
  bpgetconfig -s $c -L -A | \
awk -F'=' '{if($1~/Client.OS/){os=$2}
if($1~/Patch/){r=$2}}
END {printf(%-22s\t%-18s\t%s\n,'$c',os,r)} '
done

 

 



From: judy_hinchcli...@administaff.com
[mailto:judy_hinchcli...@administaff.com] 
Sent: Wednesday, June 10, 2009 9:19 AM
To: Donaldson, Mark; sreynol...@semprautilities.com; ewi...@ewilts.org
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] Client version

Note on Marks script, the command does not show the fourth position on
the version  6.5.3.1  all I am getting is 6.5.3.

 

Not that there is anything wrong with Marks script, its just that the
command does not show fourth position.

 



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
Donaldson, Mark
Sent: Wednesday, June 10, 2009 9:52 AM
To: Reynolds, Susan K.; Ed Wilts
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version

 

A little late to this party but here's another version.

 

#!/bin/ksh

 

PATH=$PATH:/usr/openv/netbackup/bin:/usr/openv/netbackup/bin/admincmd

 

echo   Client \t OS Level \t Release
echo =\t =\t ===
for c in `bpplclients -allunique -noheader | awk '{print $3}'`
do
  bpgetconfig -s $c -L | \
awk -F'=' '{if($1~/Client.OS/){os=$2}
if($1~/Client.Proto/){r=$2}}
END {printf(%-22s\t%-18s\t%s\n,'$c',os,r)} '
done

 



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
Reynolds, Susan K.
Sent: Tuesday, June 09, 2009 10:12 PM
To: Ed Wilts
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version

Many thanks Ed.

 

From: Ed Wilts [mailto:ewi...@ewilts.org] 
Sent: Tuesday, June 09, 2009 5:52 PM
To: Reynolds, Susan K.
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version

 

I posted this to the list a while back:

r...@osiris bin]# cat get-client-versions.sh
#!/bin/sh

# Loop through all clients gathering the client version info

PATH=$PATH:/usr/openv/netbackup/bin:/usr/openv/netbackup/bin/admincmd

export PATH

CLIENTS=/usr/openv/local/client-versions
OUT=/usr/openv/local/client-versions.csv

[ ! -d $CLIENTS ]  mkdir $CLIENTS

bpplclients -allunique -noheader | awk '{print $NF}' | \
while read client
do
  echo Client: $client
  bpgetconfig -s $client -L -A  $CLIENTS/$client
done

cd $CLIENTS
for f in *
do
  awk -f /usr/openv/local/bin/get-client-versions.awk $f
done  $OUT

[r...@osiris bin]# cat get-client-versions.awk
/Platform/ {PLATFORM = $5}
/Client OS/ {OS = $5}
/Patch/ {print FILENAME , $4 , OS , PLATFORM }

 

On Tue, Jun 9, 2009 at 6:23 PM, Reynolds, Susan K.
sreynol...@semprautilities.com wrote:

Is there a quick command that can be run that will list the current
version of Netbackup for each client on the command line without having
to extract the information from the GUI or Administrative Console?

 

Just looking for a shortcut.

 

 

-- 
Ed Wilts, Mounds View, MN, USA
ewi...@ewilts.org


This email (including any attachments) may contain confidential
and/or privileged information or information otherwise protected
from disclosure. If you are not the intended recipient, please
notify the sender immediately, do not copy this message or any
attachments and do not use it for any purpose or disclose its
content to any person, but delete this message and any attachments
from your system. Astrium disclaims any and all liability if this
email transmission was virus corrupted, altered or falsified.
-o-
Astrium Limited, Registered in England and Wales No. 2449259
Registered Office:
Gunnels Wood Road, Stevenage, Hertfordshire, SG1 2AS, England

[Veritas-bu] Problem with allocating media on Netbackup 4.5

2009-06-11 Thread david . egger

Hello,

since yesterday, I have a major problem with backing up on Netbackup 4.5
This morning, all the backups failed with error code 96, although there was
scratch tapes available for backups.
I can notice that :

- scratch tapes have been assigned to the requested pool automatically when
the backup started
- backup failed immediately with error code 96
- no entity found on the assigned tape
- if I try to change pool manually from scratch pool to Full_I pool
(needed for a host backup regarding the schedule policy), the same problem
occurs :
tape assigned in the right pool, but backup fails.

As we are running out of spare tapes, we have decided to reuse tapes that
haven't reached their retention level yet, but will soon.
To do so, I ran the following :

bpimmedia -L -mediaid media_id
- to check images on tape : no entity was found

vmquery -deassignbyid media_id source_pool 0

When I run a bpmedialist -summary | grep media_id, I get an expiration
date that will occure in 1 week
When I run a bpexpdate -m media_id -d 0, I get the following : requested
media id was not found in NB media database and/or MM volume database

Do you think I have a Media manager or media database corruption ?

Thank you


David EGGER
Thales Alenia Space - Toulouse
DSI / Administration des Ressources
email : david.eg...@external.thalesaleniaspace.com___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Status code = 14

2009-06-11 Thread Peter Mosopa
Hi,

 

Can somebody please help, I'm running Netbackup 5.1 MP4 on a Solaris 10
platform, the other day I loaded the latest Solaris 10 patches and all
of a sudden I started experiencing error message FTL - tar file write
error (10054) on the Windows 2003 servers behind the firewall.

 

Thanks

 

 

Peter Mosopa
OSS Analyst- Infrastructure Support
IT Production Support
Tel: 011 289 3472  Fax: 0865 217390  Email: 
peter.mos...@multichoice.co.za mailto:peter.mos...@multichoice.co.za
Website: www.multichoice.co.za http://www.multichoice.co.za  

MultiChoice Africa (Pty) Ltd is an authorized financial services
provider. FSP license number 11514. 

 


*

This electronic communication and the attached file(s) are subject to a 
disclaimer which can be viewed at 
http://www.multichoice.co.za/multichoice/view/multichoice/en/page21855. If you 
are unable to view the 
disclaimer, please email disclai...@multichoice.co.za for a copy.

**
image001.jpg___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Problem with allocating media on Netbackup 4.5

2009-06-11 Thread Kenneth Hansen
Hi David,

I've seen similar problems in NBU 5.1, what I usually do is mark all tapes in 
scratch pool and delete them, then do a new inventory of library and place 
new tapes in scratch pool.
My experience is that for some reason tapes that have expired but is not 
located in the library due to offsite storage or something like that shows as 
available tape in scratch but no tapes are available.

It's a quick test :)

Regards
Kenneth

From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of 
david.eg...@external.thalesaleniaspace.com
Sent: 11. juni 2009 10:36
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Problem with allocating media on Netbackup 4.5


Hello,

since yesterday, I have a major problem with backing up on Netbackup 4.5
This morning, all the backups failed with error code 96, although there was 
scratch tapes available for backups.
I can notice that :

- scratch tapes have been assigned to the requested pool automatically when the 
backup started
- backup failed immediately with error code 96
- no entity found on the assigned tape
- if I try to change pool manually from scratch pool to Full_I pool (needed 
for a host backup regarding the schedule policy), the same problem occurs :
tape assigned in the right pool, but backup fails.

As we are running out of spare tapes, we have decided to reuse tapes that 
haven't reached their retention level yet, but will soon.
To do so, I ran the following :

bpimmedia -L -mediaid media_id
- to check images on tape : no entity was found

vmquery -deassignbyid media_id source_pool 0

When I run a bpmedialist -summary | grep media_id, I get an expiration date 
that will occure in 1 week
When I run a bpexpdate -m media_id -d 0, I get the following : requested 
media id was not found in NB media database and/or MM volume database

Do you think I have a Media manager or media database corruption ?

Thank you


David EGGER
Thales Alenia Space - Toulouse
DSI / Administration des Ressources
email : david.eg...@external.thalesaleniaspace.com

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.5.339 / Virus Database: 270.12.61/2167 - Release Date: 06/10/09 
05:52:00
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Andy_Welburn

Cheers M have tried this  I can confirm that it does work.

Set up a policy to backup /app/site (contains many sub-directories  files)
Set up an exclude list for same of /app/site/*/
Ran backup  checked that only files within /app/site  NOT sub-directories 
were backed up.

Many thanks for the pointer!




mdonaldson wrote:
 NB recurses by default.  It's hard to stop.
 
 You'd have to do this by using an exclude file on the client, I suspect.
 
 If your filelist includes:
 
 /top/dir_to_backup 
 
 You might try to exclude
 /top/dir_to_backup/*/
 
 That might do it.  I've never tried it, though.  Make sure the trailing
 slash is on the exclude line - that'll force it to exclude directories
 only.
 
 -M
 
 -Original Message-
 From: veritas-bu-bounces  at  mailman.eng.auburn.edu
 [mailto:veritas-bu-bounces  at  mailman.eng.auburn.edu] On Behalf Of dbergen
 Sent: Wednesday, June 10, 2009 3:08 PM
 To: VERITAS-BU  at  MAILMAN.ENG.AUBURN.EDU
 Subject: [Veritas-bu] Backup all files in a folder but not any
 subfolders
 
 
 Can anyone tell me how to set this up in Netbackup?
 
 +--
 |This was sent by dbergen  at  cucbc.com via Backup Central.
 |Forward SPAM to abuse  at  backupcentral.com.
 +--
 
 
 ___
 Veritas-bu maillist  -  Veritas-bu  at  mailman.eng.auburn.edu
 http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
 
 ___
 Veritas-bu maillist  -  Veritas-bu  at  mailman.eng.auburn.edu
 http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


+--
|This was sent by andy.welb...@eastriding.gov.uk via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Status code = 14

2009-06-11 Thread WEAVER, Simon (external)
Thanks
Does the problem occur straight away or after a period of time? Say 2
hours for example?
On the Windows box, enable logging for BPCD and BPBKAR in NetBackup \
Logs folder. 
 
Make sure Network settings are correct (especially speed / duplex)
make sure rules setup as 10054 I believe is socket related and hence the
reason why the backup is stopping.
Make sure DNS and Name resolution is working ok. I think teh command
BPCLTCMD -pn or -hn could help with this.
 
Also take a look at this 
http://seer.entsupport.symantec.com/docs/237796.htm which I used for a
similar issue. 
In my case, after 2 hours the backup died, and it was due to the
configuration of the Firewall itself resetting connected after 2 hours
and 4 mins exactly :-)
 
Simon



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Peter
Mosopa
Sent: Thursday, June 11, 2009 9:53 AM
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Status code = 14



Hi,

 

Can somebody please help, I'm running Netbackup 5.1 MP4 on a Solaris 10
platform, the other day I loaded the latest Solaris 10 patches and all
of a sudden I started experiencing error message FTL - tar file write
error (10054) on the Windows 2003 servers behind the firewall.

 

Thanks

 

 

Peter Mosopa
OSS Analyst- Infrastructure Support
IT Production Support
Tel: 011 289 3472  Fax: 0865 217390  Email: 
peter.mos...@multichoice.co.za mailto:peter.mos...@multichoice.co.za
Website: www.multichoice.co.za http://www.multichoice.co.za  

MultiChoice Africa (Pty) Ltd is an authorized financial services
provider. FSP license number 11514. 

 



This electronic communication and the attached file(s) are subject to a
disclaimer which can be viewed at 
http://www.multichoice.co.za/multichoice/view/multichoice/en/page21855.
If you are unable to view the 
disclaimer, please email disclai...@multichoice.co.za for a copy.




This email (including any attachments) may contain confidential
and/or privileged information or information otherwise protected
from disclosure. If you are not the intended recipient, please
notify the sender immediately, do not copy this message or any
attachments and do not use it for any purpose or disclose its
content to any person, but delete this message and any attachments
from your system. Astrium disclaims any and all liability if this
email transmission was virus corrupted, altered or falsified.
-o-
Astrium Limited, Registered in England and Wales No. 2449259
Registered Office:
Gunnels Wood Road, Stevenage, Hertfordshire, SG1 2AS, England
image001.jpg___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Problem with allocating media on Netbackup 4.5

2009-06-11 Thread david . egger

Thank You Kenneth,

I've tried with 2 tapes, and it works !___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Problem with allocating media on Netbackup 4.5

2009-06-11 Thread Ed Wilts
On Thu, Jun 11, 2009 at 3:36 AM, david.eg...@external.thalesaleniaspace.com
 wrote:

  As we are running out of spare tapes, we have decided to reuse tapes that
 haven't reached their retention level yet, but will soon.
 To do so, I ran the following :

 bpimmedia -L -mediaid media_id
 - to check images on tape : no entity was found

 vmquery -deassignbyid media_id source_pool 0


Uggh.  If you want to re-use a tape early, a much better way would be to
expire the images that are on the tape.

Do you think I have a Media manager or media database corruption ?


BTW, 4.5 has been unsupported for a long time.  An upgrade is in order...

There aren't too many people on this list still running 4.5 these days.

-- 
Ed Wilts, Mounds View, MN, USA
ewi...@ewilts.org
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Problem with allocating media on Netbackup 4.5

2009-06-11 Thread WEAVER, Simon (external)
I had this was 5.1 and found that the inventory DB did not realise there
were tapes in scratch.
So following this should work - or at least try it :-)
Simon



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Kenneth
Hansen
Sent: Thursday, June 11, 2009 10:18 AM
To: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Problem with allocating media on Netbackup 4.5



Hi David,

 

I've seen similar problems in NBU 5.1, what I usually do is mark all
tapes in scratch pool and delete them, then do a new inventory of
library and place new tapes in scratch pool.

My experience is that for some reason tapes that have expired but is not
located in the library due to offsite storage or something like that
shows as available tape in scratch but no tapes are available.

 

It's a quick test J

 

Regards

Kenneth

 

From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
david.eg...@external.thalesaleniaspace.com
Sent: 11. juni 2009 10:36
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Problem with allocating media on Netbackup 4.5

 

Hello,

since yesterday, I have a major problem with backing up on Netbackup 4.5
This morning, all the backups failed with error code 96, although there
was scratch tapes available for backups.
I can notice that :

- scratch tapes have been assigned to the requested pool automatically
when the backup started
- backup failed immediately with error code 96
- no entity found on the assigned tape
- if I try to change pool manually from scratch pool to Full_I pool
(needed for a host backup regarding the schedule policy), the same
problem occurs :
tape assigned in the right pool, but backup fails.

As we are running out of spare tapes, we have decided to reuse tapes
that haven't reached their retention level yet, but will soon.
To do so, I ran the following :

bpimmedia -L -mediaid media_id
- to check images on tape : no entity was found

vmquery -deassignbyid media_id source_pool 0

When I run a bpmedialist -summary | grep media_id, I get an expiration
date that will occure in 1 week
When I run a bpexpdate -m media_id -d 0, I get the following :
requested media id was not found in NB media database and/or MM volume
database

Do you think I have a Media manager or media database corruption ?

Thank you


David EGGER
Thales Alenia Space - Toulouse
DSI / Administration des Ressources
email : david.eg...@external.thalesaleniaspace.com

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.5.339 / Virus Database: 270.12.61/2167 - Release Date:
06/10/09 05:52:00


This email (including any attachments) may contain confidential
and/or privileged information or information otherwise protected
from disclosure. If you are not the intended recipient, please
notify the sender immediately, do not copy this message or any
attachments and do not use it for any purpose or disclose its
content to any person, but delete this message and any attachments
from your system. Astrium disclaims any and all liability if this
email transmission was virus corrupted, altered or falsified.
-o-
Astrium Limited, Registered in England and Wales No. 2449259
Registered Office:
Gunnels Wood Road, Stevenage, Hertfordshire, SG1 2AS, England
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Client version

2009-06-11 Thread Donaldson, Mark
I get it all the time.  No worries.
 
-Mark



From: WEAVER, Simon (external) [mailto:simon.wea...@astrium.eads.net] 
Sent: Thursday, June 11, 2009 12:17 AM
To: judy_hinchcli...@administaff.com; Donaldson, Mark;
sreynol...@semprautilities.com; ewi...@ewilts.org
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] Client version


Judy
Actually, his name is Mark :-)
 
Simon



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
judy_hinchcli...@administaff.com
Sent: Wednesday, June 10, 2009 5:53 PM
To: mark.donald...@staples.com; sreynol...@semprautilities.com;
ewi...@ewilts.org
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version



Very nice Donald.

 

 

 

 



From: Donaldson, Mark [mailto:mark.donald...@staples.com] 
Sent: Wednesday, June 10, 2009 11:31 AM
To: Judy Hinchcliffe; sreynol...@semprautilities.com; ewi...@ewilts.org
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] Client version

 

Ah.  Let's see.  Change thusly...

 

 

#!/bin/ksh

 

PATH=$PATH:/usr/openv/netbackup/bin:/usr/openv/netbackup/bin/admincmd

 

echo   Client \t OS Level \t Release
echo =\t =\t ===
for c in `bpplclients -allunique -noheader | awk '{print $3}'`
do
  bpgetconfig -s $c -L -A | \
awk -F'=' '{if($1~/Client.OS/){os=$2}
if($1~/Patch/){r=$2}}
END {printf(%-22s\t%-18s\t%s\n,'$c',os,r)} '
done

 

 



From: judy_hinchcli...@administaff.com
[mailto:judy_hinchcli...@administaff.com] 
Sent: Wednesday, June 10, 2009 9:19 AM
To: Donaldson, Mark; sreynol...@semprautilities.com; ewi...@ewilts.org
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] Client version

Note on Marks script, the command does not show the fourth position on
the version  6.5.3.1  all I am getting is 6.5.3.

 

Not that there is anything wrong with Marks script, its just that the
command does not show fourth position.

 



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
Donaldson, Mark
Sent: Wednesday, June 10, 2009 9:52 AM
To: Reynolds, Susan K.; Ed Wilts
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version

 

A little late to this party but here's another version.

 

#!/bin/ksh

 

PATH=$PATH:/usr/openv/netbackup/bin:/usr/openv/netbackup/bin/admincmd

 

echo   Client \t OS Level \t Release
echo =\t =\t ===
for c in `bpplclients -allunique -noheader | awk '{print $3}'`
do
  bpgetconfig -s $c -L | \
awk -F'=' '{if($1~/Client.OS/){os=$2}
if($1~/Client.Proto/){r=$2}}
END {printf(%-22s\t%-18s\t%s\n,'$c',os,r)} '
done

 



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
Reynolds, Susan K.
Sent: Tuesday, June 09, 2009 10:12 PM
To: Ed Wilts
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version

Many thanks Ed.

 

From: Ed Wilts [mailto:ewi...@ewilts.org] 
Sent: Tuesday, June 09, 2009 5:52 PM
To: Reynolds, Susan K.
Cc: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Client version

 

I posted this to the list a while back:

r...@osiris bin]# cat get-client-versions.sh
#!/bin/sh

# Loop through all clients gathering the client version info

PATH=$PATH:/usr/openv/netbackup/bin:/usr/openv/netbackup/bin/admincmd

export PATH

CLIENTS=/usr/openv/local/client-versions
OUT=/usr/openv/local/client-versions.csv

[ ! -d $CLIENTS ]  mkdir $CLIENTS

bpplclients -allunique -noheader | awk '{print $NF}' | \
while read client
do
  echo Client: $client
  bpgetconfig -s $client -L -A  $CLIENTS/$client
done

cd $CLIENTS
for f in *
do
  awk -f /usr/openv/local/bin/get-client-versions.awk $f
done  $OUT

[r...@osiris bin]# cat get-client-versions.awk
/Platform/ {PLATFORM = $5}
/Client OS/ {OS = $5}
/Patch/ {print FILENAME , $4 , OS , PLATFORM }

 

On Tue, Jun 9, 2009 at 6:23 PM, Reynolds, Susan K.
sreynol...@semprautilities.com wrote:

Is there a quick command that can be run that will list the current
version of Netbackup for each client on the command line without having
to extract the information from the GUI or Administrative Console?

 

Just looking for a shortcut.

 

 

-- 
Ed Wilts, Mounds View, MN, USA
ewi...@ewilts.org

This email (including any attachments) may contain confidential
and/or privileged information or information otherwise protected
from disclosure. If you are not the intended recipient, please
notify the sender immediately, do not copy this message or any
attachments and do not use it for any purpose or disclose its
content to 

[Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread dbergen

Thanks, I should have been clearer sorry. I know how to do it in an exclude 
list but that is global to the client. What I am trying to do is separate 
subfolders into one stream and root files into another.

When is Symantec going to have per policy or per stream excludes?

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Rusty.Major
For this level of effort, it's the same to create two policies to reach 
your goal. You can get the streams and use the excludes to filter out what 
you don't want.

Rusty Major, MCSE, BCFP, VCS ▪ Sr. Storage Engineer ▪ SunGard 
Availability Services ▪ 757 N. Eldridge Suite 200, Houston TX 77079 ▪ 
281-584-4693
Keeping People and Information Connected® ▪ 
http://availability.sungard.com/ 
P Think before you print 
CONFIDENTIALITY:  This e-mail (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you received this e-mail in error, 
please notify the sender and delete this e-mail from your system. 



dbergen netbackup-fo...@backupcentral.com 
Sent by: veritas-bu-boun...@mailman.eng.auburn.edu
06/11/2009 12:32 PM
Please respond to
VERITAS-BU@MAILMAN.ENG.AUBURN.EDU


To
VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
cc

Subject
[Veritas-bu]  Backup all files in a folder but not any subfolders







Thanks, I should have been clearer sorry. I know how to do it in an 
exclude list but that is global to the client. What I am trying to do is 
separate subfolders into one stream and root files into another.

When is Symantec going to have per policy or per stream excludes?

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu



___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Donaldson, Mark
Per policy excludes are implemented already.  Have been since at least
v3.

Client Global: /usr/openv/netbackup/exclude_list 
Policy (all scheds): /usr/openv/netbackup/exclude_list.policyname
Policy  Sched:
/usr/openv/netbackup/exclude_list.policyname.schedname

-M

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of dbergen
Sent: Thursday, June 11, 2009 11:32 AM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backup all files in a folder but not any
subfolders


Thanks, I should have been clearer sorry. I know how to do it in an
exclude list but that is global to the client. What I am trying to do is
separate subfolders into one stream and root files into another.

When is Symantec going to have per policy or per stream excludes?

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread dbergen

I think I am missing something here, aren't exclude lists client based rather 
than policy based?

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Donaldson, Mark
Yes, they're on the client, but they can be limited to function on that
client for only one policy or policy  sched combo. 

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of dbergen
Sent: Thursday, June 11, 2009 11:51 AM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backup all files in a folder but not any
subfolders


I think I am missing something here, aren't exclude lists client based
rather than policy based?

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Windows Admin Console

2009-06-11 Thread Cornely, David
So I've tried tracking down the process for doing this but have come up
empty in both the admin guides and Symantec knowledge base.  I've opened
a case with Symantec but it's a 6 hour callback so I figured maybe
someone here has this info or can refer me to a specific procedure in
one of the guides that I've missed.

 

Environment:

NBU v6.5.3  on master server running Oracle Enterprise Linux (really
just a useless version of RHEL).

 

Specifically, I'm trying to configure the remote Windows admin console
on a 64- bit W2K3 server to be used by a non-admin user with relying on
Active Directory for authorization.  Oh yeah, this is behind a firewall
too.

 

The authorization configuration on the master server is rather cryptic
and there just isn't a clear step-by-step process on how to do this
(from the packages I need installed on the master to the firewall ports
to open to the actual config on the master).  I would have used the Java
console instead but discovered there isn't one for 64-bit Windows until
6.5.4 is realease.

 

TIA,

 

-Dave

 

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Jeff Lightner
Or to restate that - you can have multiple exclude lists - one for each
policy on the client.  

Just append the policy to the exclude.list its relevant for:

e.g.
POLICY SERVER-OS
POLICY SERVER-DB

In SERVER-DB you're backing all of /database/prodDB and all of
/oracle/prodDB without any excludes.

Since it has a separate policy then you set the OS policy exclude list
to exclude it (and possibly other things).  An example from one of my
Linux hosts:

exclude.list.SERVER-OS contents:

/proc
/sys
/database/prodDB
/oracle/prodDB
/mnt

In reality we create separate policies for all databases so the exclude
has /database/* and /oracle/* (we don't address other files in these
directories as there aren't supposed to be any as they are simply
supposed to be base directories for the DB specific directories.




-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
Donaldson, Mark
Sent: Thursday, June 11, 2009 1:53 PM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: Re: [Veritas-bu] Backup all files in a folder but not any
subfolders

Yes, they're on the client, but they can be limited to function on that
client for only one policy or policy  sched combo. 

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of dbergen
Sent: Thursday, June 11, 2009 11:51 AM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backup all files in a folder but not any
subfolders


I think I am missing something here, aren't exclude lists client based
rather than policy based?

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
 
Please consider our environment before printing this e-mail or attachments.
--
CONFIDENTIALITY NOTICE: This e-mail may contain privileged or confidential 
information and is for the sole use of the intended recipient(s). If you are 
not the intended recipient, any disclosure, copying, distribution, or use of 
the contents of this information is prohibited and may be unlawful. If you have 
received this electronic transmission in error, please reply immediately to the 
sender that you have received the message in error, and delete it. Thank you.
--
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread dbergen

Hmm... it would appear I have more reading to do.

Thanks,
d

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread dbergen

Is there an exclude.list file on a Windows client? I can't find it.

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Len Boyle
It is in the registry

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of dbergen
Sent: Thursday, June 11, 2009 2:20 PM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backup all files in a folder but not any subfolders


Is there an exclude.list file on a Windows client? I can't find it.

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread dbergen

I thought the excludes in the registry were also global, how do I add ones to 
the reg that are tied to a certain policy or schedule?

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Rusty.Major
But the excludes are created from the Backup Archive Restore GUI on the 
client.
You can create the policy and/or schedule granular excludes here as well. 
Remember that NetBackup will only read one exclude list. What I'm getting 
at is if you have a global (to the client) and policy and scheudule 
granular exclude lists, and want to exclude the recycle bin, it has to be 
in every exclude list.

Rusty Major, MCSE, BCFP, VCS ▪ Sr. Storage Engineer ▪ SunGard 
Availability Services ▪ 757 N. Eldridge Suite 200, Houston TX 77079 ▪ 
281-584-4693
Keeping People and Information Connected® ▪ 
http://availability.sungard.com/ 
P Think before you print 
CONFIDENTIALITY:  This e-mail (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you received this e-mail in error, 
please notify the sender and delete this e-mail from your system. 



Len Boyle len.bo...@sas.com 
Sent by: veritas-bu-boun...@mailman.eng.auburn.edu
06/11/2009 01:27 PM

To
VERITAS-BU@MAILMAN.ENG.AUBURN.EDU VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
cc

Subject
Re: [Veritas-bu] Backup all files in a folder but not any subfolders






It is in the registry

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of dbergen
Sent: Thursday, June 11, 2009 2:20 PM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backup all files in a folder but not any subfolders


Is there an exclude.list file on a Windows client? I can't find it.

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu



___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread Martin, Jonathan
Use the client settings app in the Administration Console or the Backup
and Archive GUI on the client to specify exclusion, policy and schedules
to apply to.  I wouldn't recommend updating this manually in the
registry.

-Jonathan
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread dbergen

Awesome, yup, I got it, thank you all.

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Windows Admin Console

2009-06-11 Thread judy_hinchcliffe
Did you add the name of the W2K3 server to the other servers list on
the Master?

 

By default Netbackup does not talk to strangers.

So you have to put the server with the console on the list of friends he
is allowed to talk to.

This is a security feature to stop just anybody from being able to run a
console.

 



From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Cornely,
David
Sent: Thursday, June 11, 2009 1:03 PM
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] Windows Admin Console

 

So I've tried tracking down the process for doing this but have come up
empty in both the admin guides and Symantec knowledge base.  I've opened
a case with Symantec but it's a 6 hour callback so I figured maybe
someone here has this info or can refer me to a specific procedure in
one of the guides that I've missed.

 

Environment:

NBU v6.5.3  on master server running Oracle Enterprise Linux (really
just a useless version of RHEL).

 

Specifically, I'm trying to configure the remote Windows admin console
on a 64- bit W2K3 server to be used by a non-admin user with relying on
Active Directory for authorization.  Oh yeah, this is behind a firewall
too.

 

The authorization configuration on the master server is rather cryptic
and there just isn't a clear step-by-step process on how to do this
(from the packages I need installed on the master to the firewall ports
to open to the actual config on the master).  I would have used the Java
console instead but discovered there isn't one for 64-bit Windows until
6.5.4 is realease.

 

TIA,

 

-Dave

 

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup all files in a folder but not any subfolders

2009-06-11 Thread judy_hinchcliffe
Edit it via client properties on the gui.

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of dbergen
Sent: Thursday, June 11, 2009 1:20 PM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backup all files in a folder but not any
subfolders


Is there an exclude.list file on a Windows client? I can't find it.

+--
|This was sent by dber...@cucbc.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Windows Admin Console

2009-06-11 Thread Cornely, David
Yeah, I’ve already added the system to bp.conf but no luck.

The user I’m logged in as on the Windows box doesn’t have admin privileges 
there but I don’t have any issue providing that user root login on the master 
server, which is the account I’m using when providing credentials via the admin 
console.

I’ll check the port config guide, I’m thinking I missed a port somewhere…

 

 

From: rusty.ma...@sungard.com [mailto:rusty.ma...@sungard.com] 
Sent: Thursday, June 11, 2009 11:54
To: Cornely, David
Subject: Re: [Veritas-bu] Windows Admin Console

 


David, 
The port configuration guide does a pretty good job at showing what ports are 
required. For the Windows Admin Console, I think you'll have to use Media 
Server ports as it's a stripped down Media Server. 

I've not tried using AD, but the authorization for Windows Admin Consoles 
requires SERVER= entries in bp.conf, again because it's an almost Media Server. 
Without NBAC, I don't think you can get around letting this admin log on 
without anything other than root priviledges, but then again, I've not tried to 
lock anyone down before. 

Rusty Major, MCSE, BCFP, VCS ▪ Sr. Storage Engineer ▪ SunGard Availability 
Services ▪ 757 N. Eldridge Suite 200, Houston TX 77079 ▪ 281-584-4693 
Keeping People and Information Connected® ▪ http://availability.sungard.com/ 
http://availability.sungard.com/  
P Think before you print 
CONFIDENTIALITY:  This e-mail (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you received this e-mail in error, please 
notify the sender and delete this e-mail from your system. 



Cornely, David david_corn...@intuit.com 
Sent by: veritas-bu-boun...@mailman.eng.auburn.edu 

06/11/2009 01:03 PM 

To

veritas-bu@mailman.eng.auburn.edu 

cc


Subject

[Veritas-bu] Windows Admin Console

 






So I’ve tried tracking down the process for doing this but have come up empty 
in both the admin guides and Symantec knowledge base.  I’ve opened a case with 
Symantec but it’s a 6 hour callback so I figured maybe someone here has this 
info or can refer me to a specific procedure in one of the guides that I’ve 
missed. 
  
Environment: 
NBU v6.5.3  on master server running Oracle Enterprise Linux (really just a 
useless version of RHEL). 
  
Specifically, I’m trying to configure the remote Windows admin console on a 64- 
bit W2K3 server to be used by a non-admin user with relying on Active Directory 
for authorization.  Oh yeah, this is behind a firewall too. 
  
The authorization configuration on the master server is rather cryptic and 
there just isn’t a clear step-by-step process on how to do this (from the 
packages I need installed on the master to the firewall ports to open to the 
actual config on the master).  I would have used the Java console instead but 
discovered there isn’t one for 64-bit Windows until 6.5.4 is realease. 
  
TIA, 
  
-Dave 
 ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Only 128 drives allowed on Linux?!?

2009-06-11 Thread rsavage

We are curretly having a problem with the robot daemon going down. We are 
running windows 2003 x64 with an EMC 4406 VTL. We have 168 tape drives 
configured but can only have about 50 running at one time. We have had up to 80 
jobs running at once but about every 3-4 days the robot daemon goes down and we 
have to reboot the NBU infrastructure of the master and media server. We then 
stagger the backups and it works fine. 

Right now we have a limit to the number of jobs that can start. EMC and Veritas 
are looking into the issue.

We just upgraded to 6.5.3 about 2 months ago.

+--
|This was sent by rich.sav...@bcbsne.com via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Backing up cluster after failover

2009-06-11 Thread smwoodcrafts

We are having a problem with a cluster backup after a failover. Here are the 
particulars:

Cluster running 2003, 2 servers, active-passive, on DMZ, ports open on 
firewall, Hosts files on both boxes were edited to include master/media server.

Master/Media server running 2003, Hosts file edited to include all ip address 
for cluster name. 

Everything was running finem until the cluster failed over. Now we are getting 
71 errors. It appears that, when I check the client properties on the 
Master/Media server, it still shows the original active node as the client. How 
do I get it to change over to the now active node?

Thanks for the help

smwoodcrafts

+--
|This was sent by dseym...@ap.org via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backing up cluster after failover

2009-06-11 Thread judy_hinchcliffe
When backing up a cluster to have to use more then one name.

Physical servers are  serverAp and serverBp
The resources belong to serverAr and serverBr

You should set up the backup of any local drives like the c drive to be
backed up via the physical name

You should then set up the backup of the resources by the resource name.
This way if the resource is on Ap or Bp it still finds it because it is
getting to it via the resource.

You still install netbackup on the physical server using the physical
name, and netbackup will be able to back up the resource drive just
fine.

There are some docs out there about how to backup clustered servers.
-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
smwoodcrafts
Sent: Thursday, June 11, 2009 1:31 PM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backing up cluster after failover


We are having a problem with a cluster backup after a failover. Here are
the particulars:

Cluster running 2003, 2 servers, active-passive, on DMZ, ports open on
firewall, Hosts files on both boxes were edited to include master/media
server.

Master/Media server running 2003, Hosts file edited to include all ip
address for cluster name. 

Everything was running finem until the cluster failed over. Now we are
getting 71 errors. It appears that, when I check the client properties
on the Master/Media server, it still shows the original active node as
the client. How do I get it to change over to the now active node?

Thanks for the help

smwoodcrafts

+--
|This was sent by dseym...@ap.org via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backing up cluster after failover

2009-06-11 Thread michael.ketley

Before you go into anything too deeply, check that you bp.conf on the active
node has a CLIENT_NAME entry of the actual node and not the passive.

Easy enough to copy across the conf file from one node to the other and not
amend this

Mike
-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of smwoodcrafts
Sent: 11 June 2009 19:31
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] Backing up cluster after failover


We are having a problem with a cluster backup after a failover. Here are the
particulars:

Cluster running 2003, 2 servers, active-passive, on DMZ, ports open on
firewall, Hosts files on both boxes were edited to include master/media
server.

Master/Media server running 2003, Hosts file edited to include all ip address
for cluster name. 

Everything was running finem until the cluster failed over. Now we are
getting 71 errors. It appears that, when I check the client properties on the
Master/Media server, it still shows the original active node as the client.
How do I get it to change over to the now active node?

Thanks for the help

smwoodcrafts

+--
|This was sent by dseym...@ap.org via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
*
*

This e-mail (including any attachments) is intended for the above-named
person(s). It is confidential and may contain legally privileged information.
Any opinions expressed are not necessarily those of the company. If you
receive it in error please delete it, inform the sender and do not copy,
distribute or take any action in reliance upon it. 

We may monitor all incoming and outgoing emails in line with current
legislation. We have taken steps to ensure that this email and attachments
are free from any virus, but it remains your responsibility to ensure that
viruses do not adversely affect you. 

Orange Personal Communications Services Limited is an English company
(registered no. 2178917) with its address at St James Court, Great Park Road,
Almondsbury Park, Bradley Stoke, Bristol BS32 4QJ. 
Orange Retail Limited is an English company (registered no. 2439104) with its
address at St James Court, Great Park Road, Almondsbury Park, Bradley Stoke,
Bristol BS32 4QJ.
Orange Home UK Limited is an English company (registered no. 3014367) with
its address at St James Court, Great Park Road, Almondsbury Park, Bradley
Stoke, Bristol BS32 4QJ. 


*
*

**

This e-mail (including any attachments) is intended for the above-named 
person(s). It is confidential and may contain legally privileged information. 
Any opinions expressed are not necessarily those of the company. If you receive 
it in error please delete it, inform the sender and do not copy, distribute or 
take any action in reliance upon it. 

We may monitor all incoming and outgoing emails in line with current 
legislation. We have taken steps to ensure that this email and attachments are 
free from any virus, but it remains your responsibility to ensure that viruses 
do not adversely affect you. 

Orange Personal Communications Services Limited is an English company 
(registered no. 2178917) with its address at St James Court, Great Park Road, 
Almondsbury Park, Bradley Stoke, Bristol BS32 4QJ. 
Orange Retail Limited is an English company (registered no. 2439104) with its 
address at St James Court, Great Park Road, Almondsbury Park, Bradley Stoke, 
Bristol BS32 4QJ.
Orange Home UK Limited is an English company (registered no. 3014367) with its 
address at St James Court, Great Park Road, Almondsbury Park, Bradley Stoke, 
Bristol BS32 4QJ. 


**



*
This message and any attachments (the message) are confidential and intended 
solely for the addressees. 
Any unauthorised use or dissemination is prohibited.
Messages are susceptible to alteration. 
France Telecom Group shall not be liable for the message if altered, changed or 
falsified.
If you are not the intended addressee of this message, please cancel it 
immediately and inform the sender.


NetBackup - Java on verdelet.gslb.orange.co.uk.lnk
Description: NetBackup - Java on verdelet.gslb.orange.co.uk.lnk
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu

Re: [Veritas-bu] Backing up cluster after failover

2009-06-11 Thread WEAVER, Simon (external)
Are you not backing up the Virtual Name of the Cluster ?

Sounds like you are backing up the Physical NODE names of the Server and
when the resources or DRIVE letters goto another node, your policy
cannot find them on the node they were originally located !

Simon 

-Original Message-
From: veritas-bu-boun...@mailman.eng.auburn.edu
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of
smwoodcrafts
Sent: Thursday, June 11, 2009 7:31 PM
To: VERITAS-BU@mailman.eng.auburn.edu
Subject: [Veritas-bu] Backing up cluster after failover


We are having a problem with a cluster backup after a failover. Here are
the particulars:

Cluster running 2003, 2 servers, active-passive, on DMZ, ports open on
firewall, Hosts files on both boxes were edited to include master/media
server.

Master/Media server running 2003, Hosts file edited to include all ip
address for cluster name. 

Everything was running finem until the cluster failed over. Now we are
getting 71 errors. It appears that, when I check the client properties
on the Master/Media server, it still shows the original active node as
the client. How do I get it to change over to the now active node?

Thanks for the help

smwoodcrafts

+--
|This was sent by dseym...@ap.org via Backup Central.
|Forward SPAM to ab...@backupcentral.com.
+--


___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu

This email (including any attachments) may contain confidential
and/or privileged information or information otherwise protected
from disclosure. If you are not the intended recipient, please
notify the sender immediately, do not copy this message or any
attachments and do not use it for any purpose or disclose its
content to any person, but delete this message and any attachments
from your system. Astrium disclaims any and all liability if this
email transmission was virus corrupted, altered or falsified.
-o-
Astrium Limited, Registered in England and Wales No. 2449259
Registered Office:
Gunnels Wood Road, Stevenage, Hertfordshire, SG1 2AS, England
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Using multiple drives with NDMP.

2009-06-11 Thread Jeff Cleverley

Greetings,

I've got just about all the bugs worked out of the new test environment 
except 1.  I can get my NDMP policies to back up more than one file 
system at a time.


I've got a 6.5.3 environment running on linux.  I've got a library 
(tld0) with 4 Gen 3 Ultrium drives.  I've defined a media manager 
storage unit because I'm doing remote NDMP.  I've set up 3 test 
policies, 1 standard and 2 NDMP.  All policies work fine one at a time, 
or either NDMP policy will run at the same time as the standard policy.  
The storage unit is set to allow the use of 4 drives and also allow 
multiplexing (for the standard policy).  The policies vary on the number 
of jobs per policy.  One is set to 9 and the other is not set.  One NDMP 
policy has 3 file systems to back up and the other has 1.


When I run the policy with 3 file systems, it only runs one at a time to 
one tape.  The other 2 just queue.  I've tried putting in the new stream 
directive between them in the includes file but it didn't help.  I can 
get them all to work one at a time but can't get them to backup more 
than one NDMP file system at a time.  Is there some bp.conf directive I 
need to create? 


Any help pointing down the correct path would be appreciated.

Thanks,

Jeff

--

Jeff Cleverley
Unix Systems Administrator
4380 Ziegler Road
Fort Collins, Colorado 80525
970-288-4611
jeff.clever...@avagotech.com

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Using multiple drives with NDMP.

2009-06-11 Thread Jon Bousselot
What do you have set for maximum jobs per client under the global 
attributes of the properties tab of the master server?

by the CLI...

Check it
/usr/openv/netbackup/bin/admincmd/bpconfig -L

Set it
/usr/openv/netbackup/bin/admincmd/bpconfig -mj 4

NDMP will multi-stream, but not multiplex.

-Jon
 Greetings,

 I've got just about all the bugs worked out of the new test 
 environment except 1.  I can get my NDMP policies to back up more than 
 one file system at a time.

 I've got a 6.5.3 environment running on linux.  I've got a library 
 (tld0) with 4 Gen 3 Ultrium drives.  I've defined a media manager 
 storage unit because I'm doing remote NDMP.  I've set up 3 test 
 policies, 1 standard and 2 NDMP.  All policies work fine one at a 
 time, or either NDMP policy will run at the same time as the standard 
 policy.  The storage unit is set to allow the use of 4 drives and also 
 allow multiplexing (for the standard policy).  The policies vary on 
 the number of jobs per policy.  One is set to 9 and the other is not 
 set.  One NDMP policy has 3 file systems to back up and the other has 1.

 When I run the policy with 3 file systems, it only runs one at a time 
 to one tape.  The other 2 just queue.  I've tried putting in the new 
 stream directive between them in the includes file but it didn't 
 help.  I can get them all to work one at a time but can't get them to 
 backup more than one NDMP file system at a time.  Is there some 
 bp.conf directive I need to create? 

 Any help pointing down the correct path would be appreciated.

 Thanks,

 Jeff
 -- 

 Jeff Cleverley
 Unix Systems Administrator
 4380 Ziegler Road
 Fort Collins, Colorado 80525
 970-288-4611
 jeff.clever...@avagotech.com
   
 

 ___
 Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
 http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu
   

___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] Netbackup Exam ??

2009-06-11 Thread Sabar Martin Hasiholan Panggabean
Hi,

Does anyone has link/information where to get pdf questions for these exam:

Exam 250-365: Data Protection Administration for Windows using NetBackup 6.5
Exam 250-265: Data Protection Administration for UNIX using NetBackup 6.5

BR,

Martin
___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu