Re: [Veritas-bu] NetBackup Clients : Mass Install

2015-07-02 Thread Anurag Sharma
Jeff,

If my master and media are on Solaris, can I still push AIX/Windows/RHEL with 
dedicated polices ?

Don 't I need a master server on same platform too ?

Anurag

From: jlight...@dsservices.com
To: veritas-bu@mailman.eng.auburn.edu; veritas-bu-boun...@mailman.eng.auburn.edu
Date: Wed, 1 Jul 2015 14:19:37 +
Subject: Re: [Veritas-bu] NetBackup Clients : Mass Install









You can  create the policy in NetBackup and use that screen to push to the 
clients you’re installing.That assumes you’ve opened up connection to the 
clients.  
 You’d want separate policies for AIX, RHEL and Windows of course. 
 
I don’t know how many clients you can push to that way at once though.
 
Here we typically don’t push but rather do it via command line but we don’t 
have 5000 servers.   Are you going to user desktops vs servers in that 5000 
count
 by any chance?  If so I’d focus on servers first then do desktops (if ever – 
here we don’t back up desktops – we reload in the event of failure).
 
 

Jeffrey C. Lightner
Sr. UNIX/Linux Administrator
 
DS Services of America, Inc.
2300 Windy Ridge Pkwy
Suite
600 N
Atlanta, GA  30339-8461
 
P:
678-486-3516
C:
678-772-0018
F:
678-460-3603
E:
jlight...@dsservices.com

 


From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu]
On Behalf Of Anurag Sharma

Sent: Wednesday, July 01, 2015 5:17 AM

To: veritas-bu; veritas-bu2

Subject: [Veritas-bu] NetBackup Clients : Mass Install


 

Hello All,



Let say we have our master server on solaris 10 (sprac architecture) and Media 
servers on Redhat and AIX and windows.



Now we need to install NetBackup clients on 5000 server with mixed OS linux, 
windows etc.



What is the best way to install clients ?



I know we can push through SCCM (in windows ) and puppet (in linux)  is there 
any other better way to do it ?





Anurag 





___
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 Clients : Mass Install

2015-07-01 Thread Anurag Sharma
Hello All,

Let say we have our master server on solaris 10 (sprac architecture) and Media 
servers on Redhat and AIX and windows.

Now we need to install NetBackup clients on 5000 server with mixed OS linux, 
windows etc.

What is the best way to install clients ?

I know we can push through SCCM (in windows ) and puppet (in linux)  is there 
any other better way to do it ?


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


Re: [Veritas-bu] AUTOMATE MYSQL DUMP BACKUP

2014-05-21 Thread Anurag Sharma
Thanks Jeff,
 
That's exactly what was needed 
 
After moving the done in the end it seems to work fine.
 
Anurag 
From: jlight...@dsservices.com
To: veritas-bu@mailman.eng.auburn.edu
Date: Tue, 20 May 2014 20:57:05 +
Subject: Re: [Veritas-bu] AUTOMATE MYSQL DUMP BACKUP












D’oh – realized I’d not sent this to the list but just to the OP.
 
How many databases (or more appropriately how many distinct items) are output 
by the command:
 
databases=`$MYSQL -u$MYSQL_USER -p$MYSQL_PASSWORD -e SHOW DATABASES; | egrep 
-iv (Database|information_schema)
 
Your for loop is telling it to run the backup for each database produced by the 
above command.  If you have 4-5 then that is the problem.   You probably want
 to put the “done” FROM the end of your script BEFORE that line so it does the 
dump of each database but then only does the backup after they’ve all been 
dumped.  

 
Alternatively you could add logic to do the backup of each dump individually.
 
 
 




 




From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu]
On Behalf Of Anurag Sharma

Sent: Tuesday, May 20, 2014 3:19 PM

To: mia...@gmail.com

Cc: veritas-bu; veritas-bu2

Subject: Re: [Veritas-bu] AUTOMATE MYSQL DUMP BACKUP


 

All,

 

Thank you for your help.

 

Finally I got it working by adding bpbackup command in the end.

 

Now the problem I am facing is Üser Backup
is running 4 to 5 times instead of just once. What could be the reason for that 
??

 

Here's  the script I am using .

 



 

#!/bin/bash



#The below command will delete the older backup

rm -r /mysql_backup/201*

 

TIMESTAMP=$(date +%Y%m%d)

BACKUP_DIR=/mysql_backup/$TIMESTAMP

MYSQL_USER=mysqlbak

MYSQL_PASSWORD=Cricket1

MYSQL=/usr/bin/mysql

# MYSQLDUMP=/usr/bin/mysqldump

MYSQLDUMP=/usr/mysql/5.1/bin/mysqldump

mkdir -p $BACKUP_DIR

databases=`$MYSQL -u$MYSQL_USER -p$MYSQL_PASSWORD -e SHOW DATABASES; | egrep 
-iv (Database|information_schema)`

for db in $databases; do

# echo $db

mkdir -p $BACKUP_DIR/$db

BACKUP_DIRR=/mysql_backup/$TIMESTAMP/$db

$MYSQLDUMP --force --opt --user=$MYSQL_USER -p$MYSQL_PASSWORD --databases $db | 
gzip  $BACKUP_DIRR/$db.sql.gz



#The below command will start NetBackup Tape backups

/usr/openv/netbackup/bin/./bpbackup -w -p SOPMYSQL02 -s sopmysql02-backup 
/mysql_backup/

 

done



 




CC:
veritas-bu@mailman.eng.auburn.edu;
veritas-bu-boun...@mailman.eng.auburn.edu

From: mia...@gmail.com

Subject: Re: [Veritas-bu] AUTOMATE MYSQL DUMP BACKUP

Date: Tue, 20 May 2014 07:15:24 +0200

To: sharma.anu...@hotmail.com

Hi Anurag


 


Yes you would to use bpstart_notify and bpend_notify for this


 


bpstart_notify to call the backup.sh and bpend_notify to delete the dump after 
successfull backup



Regards


Michael




Sendt fra min iPad




Den 19/05/2014 kl. 21.57 skrev Anurag Sharma sharma.anu...@hotmail.com:




Hi All,



Here's my situation.



MASTER/MEDIA : Solaris 10



Client : Linux/Solaris





There is a backup script created by mysql admin lets call it backup.sh  which 
can do on demand  mysql dump on a directory




/mysql_backup/mmdd. It mean every time you run the script it will create a 
folder with that date.







I have been told to backup these dump files as standard backup.



I need following accomplished.



1. Need to call backup.sh to perform mysql dump and crate dump in 
/mysql_backup/ymmdd

2. Run netbackup backup to backup the dump.

3. Once the netbackup backup is successful delete the dump from disk.





What would be the best way to do it via netbackup ? Do I have to use bpstart 
and bpend scripts on each client ?





Please guide.



Anurag Sharma











___

Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu

http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu







Athena®, Created for the Cause™

Making a Difference in the Fight Against Breast Cancer

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

Re: [Veritas-bu] AUTOMATE MYSQL DUMP BACKUP

2014-05-20 Thread Anurag Sharma
All,
 
Thank you for your help.
 
Finally I got it working by adding bpbackup command in the end.
 
Now the problem I am facing is Üser Backup is running 4 to 5 times instead of 
just once. What could be the reason for that ??
 
Here's  the script I am using .
 

 
#!/bin/bash

#The below command will delete the older backup
rm -r /mysql_backup/201*
 
TIMESTAMP=$(date +%Y%m%d)
BACKUP_DIR=/mysql_backup/$TIMESTAMP
MYSQL_USER=mysqlbak
MYSQL_PASSWORD=Cricket1
MYSQL=/usr/bin/mysql
# MYSQLDUMP=/usr/bin/mysqldump
MYSQLDUMP=/usr/mysql/5.1/bin/mysqldump
mkdir -p $BACKUP_DIR
databases=`$MYSQL -u$MYSQL_USER -p$MYSQL_PASSWORD -e SHOW DATABASES; | egrep 
-iv (Database|information_schema)`
for db in $databases; do
# echo $db
mkdir -p $BACKUP_DIR/$db
BACKUP_DIRR=/mysql_backup/$TIMESTAMP/$db
$MYSQLDUMP --force --opt --user=$MYSQL_USER -p$MYSQL_PASSWORD 
--databases $db | gzip  $BACKUP_DIRR/$db.sql.gz

#The below command will start NetBackup Tape backups
/usr/openv/netbackup/bin/./bpbackup -w -p SOPMYSQL02 -s 
sopmysql02-backup /mysql_backup/
 
done

 
CC: veritas-bu@mailman.eng.auburn.edu; veritas-bu-boun...@mailman.eng.auburn.edu
From: mia...@gmail.com
Subject: Re: [Veritas-bu] AUTOMATE MYSQL DUMP BACKUP
Date: Tue, 20 May 2014 07:15:24 +0200
To: sharma.anu...@hotmail.com

Hi Anurag
Yes you would to use bpstart_notify and bpend_notify for this
bpstart_notify to call the backup.sh and bpend_notify to delete the dump after 
successfull backup

RegardsMichael
Sendt fra min iPad
Den 19/05/2014 kl. 21.57 skrev Anurag Sharma sharma.anu...@hotmail.com:




Hi All,

Here's my situation.

MASTER/MEDIA : Solaris 10

Client : Linux/Solaris


There is a backup script created by mysql admin lets call it backup.sh  which 
can do on demand  mysql dump on a directory 

/mysql_backup/mmdd. It mean every time you run the script it will create a 
folder with that date.



I have been told to backup these dump files as standard backup.

I need following accomplished.

1. Need to call backup.sh to perform mysql dump and crate dump in 
/mysql_backup/ymmdd
2. Run netbackup backup to backup the dump.
3. Once the netbackup backup is successful delete the dump from disk.


What would be the best way to do it via netbackup ? Do I have to use bpstart 
and bpend scripts on each client ?


Please guide.

Anurag Sharma




  
___
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] AUTOMATE MYSQL DUMP BACKUP

2014-05-19 Thread Anurag Sharma
Hi All,

Here's my situation.

MASTER/MEDIA : Solaris 10

Client : Linux/Solaris


There is a backup script created by mysql admin lets call it backup.sh  which 
can do on demand  mysql dump on a directory 

/mysql_backup/mmdd. It mean every time you run the script it will create a 
folder with that date.



I have been told to backup these dump files as standard backup.

I need following accomplished.

1. Need to call backup.sh to perform mysql dump and crate dump in 
/mysql_backup/ymmdd
2. Run netbackup backup to backup the dump.
3. Once the netbackup backup is successful delete the dump from disk.


What would be the best way to do it via netbackup ? Do I have to use bpstart 
and bpend scripts on each client ?


Please guide.

Anurag Sharma




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


Re: [Veritas-bu] Any issues with NetBackup 7.5.0.7?

2014-05-12 Thread Anurag Sharma
Go for 7.6.0.2 its supposed to be most  stable

From: jim.vandev...@physiciansmutual.com
To: veritas...@eng.auburn.edu
Date: Mon, 12 May 2014 17:45:02 -0500
Subject: [Veritas-bu] Any issues with NetBackup 7.5.0.7?








Has anyone run into major issues with fixpack 7?
 
Would / Have you gone to it from fixpack 4?
 
Go to 7.6 instead?
 
Solaris 10 x64 SPARC master.
AIX 7.1 media server
Windows, AIX, Linux clients.
 
Thanks,
--

Jim VandeVegt | ETG, Solutions Architect; Enterprise UNIX, Backup,  Storage 
Administration
Physicians Mutual | 2600 Dodge Street
 | Omaha, NE 68131
402.930.2649
|
http://www.PhysiciansMutual.com |
jim.vandev...@physiciansmutual.com
 
Insurance for all of us.™
health | life | retirement





This message and any attachments are confidential, may contain privileged 
information, and are intended solely for the recipient named above.
If you are not the intended recipient, or a person responsible for delivery to 
the named recipient, you are notified that any review, distribution, 
dissemination or copying is prohibited.
If you have received this message in error, you should notify the sender by 
return email and delete the message from your computer system.



___
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 7.5 certification

2014-04-26 Thread Anurag Sharma
Anyone done it ? Any gotcha ? I haven't worked on nbu appliance and PDDO any 
questions on those ?
  ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Backup 450TB Oracle Database

2014-04-25 Thread Anurag Sharma
Thank you all for wonderful thoughts.

So far the plan is to do Timefinder local snapshots an may be SRDF remote 
snapshots if possible.

As far  as backups go the only backup could be done is backing up timefinder 
snapshots on tape.

Date: Tue, 22 Apr 2014 08:58:56 -0500
Subject: Re: [Veritas-bu] Backup 450TB Oracle Database
From: rusty.ma...@sungardas.com
To: sharma.anu...@hotmail.com
CC: veritas-bu@mailman.eng.auburn.edu; veritas-bu-boun...@mailman.eng.auburn.edu

Here are my thoughts, but I think you should talk to all the vendors you can as 
this is physically going to be difficult to achieve due to the sheer size of 
the DB.
If this database is critical, or even remotely important to the continuation of 
your business, then you should consider an online mirror, along with a remote 
replicated mirror.
You can stop there, but to offer additional protection against corruption, 
etc., you are going to have to do some sort of snap to some disk storage. You 
won't be able to protect the database with a traditional backup as it will blow 
your RPO out significantly. Once it is snapped to disk, you then need to decide 
if you want any other copies. You can copy the snaps and/or the online mirror 
to tape and keep them as long as needed to meet your business requirements and 
any governing regulations. Tape is going to be faster than disk backups in this 
case and it will be significantly cheaper.

Either way you slice it, to do it right will not be cheap and you will need to 
do a lot of testing, both on the backup and recovery side to ensure it fits 
within the business' RPO/RTO requirements. Don't forget to continue testing 
recoveries on a scheduled basis, especially after upgrades.

Good luck. If you can remember, I'd like to hear what your end solution 
is.-Rusty


On Mon, Apr 21, 2014 at 4:35 PM, Anurag Sharma sharma.anu...@hotmail.com 
wrote:




Hi Experts,


I have been tasked with to purpose a solution to backup 450TB of Oracle 
Database.


So far my suggestion has been to take Timefinder local clone and do monthly 
full on tape using T1c tapes on SL3000




Please through some lights and guide a soloution? Would it be better to use 
datadomain ?



Anurag


___

Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu

http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu




-- 
Rusty Major ▪ Manager - Compute Engineering, Backup ▪ Sungard Availability
Services

757 N. Eldridge Pkwy, Suite 200, Houston, TX 77079 ▪  Office: 281-584-4693  ▪ 
Mobile: 713-724-4914 ▪ rusty.ma...@sungardas.com ▪ www.sungardas.com


 


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.

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


[Veritas-bu] Backup 450TB Oracle Database

2014-04-21 Thread Anurag Sharma
Hi Experts,


I have been tasked with to purpose a solution to backup 450TB of Oracle 
Database.


So far my suggestion has been to take Timefinder local clone and do monthly 
full on tape using T1c tapes on SL3000



Please through some lights and guide a soloution? Would it be better to use 
datadomain ?



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


[Veritas-bu] Cisco SME (Storage Media Encryption)

2014-02-07 Thread Anurag Sharma
Has anyone worked on this ? If yes please reply.
  ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Netbackup With Data Domain,

2014-02-02 Thread Anurag Sharma
Thank you Mikhail for updating me I really appreciate it.

Suni : Let us know what did you do finally. DDBOOST over IP or FC or VTL over 
FC ?

MikhailI hate to say but do you have these documentations pdfs handy if you can 
email me acrooss ?

Anurag

Date: Sat, 1 Feb 2014 21:54:19 +1100
Subject: RE: [Veritas-bu] Netbackup With Data Domain,
From: mikhail.niki...@gmail.com
To: sharma.anu...@hotmail.com
CC: sunilgulati1...@gmail.com; veritas-bu@mailman.eng.auburn.edu

Hi Anurag,
DD Boost over FC utilizes additional DFC storage server responsible for FC 
transfer, on top those you have for Boost over IP. Also, by design replication 
between DD boxes runs over IP.
The workflow is explained in the DD Boost plug-in documentation in details.
Best regards, Mikhail
On 01/02/2014 7:38 pm, Anurag Sharma sharma.anu...@hotmail.com wrote:




Mikhal,

I have not checked the latest one so you could be right.

But explain me this. 

When you are doing DDBOOST over FC how media server will see DD and Storage 
Server and that communication would still have to be through IP right ? So I 
guess you will establish initial connection using mangement IP then transfer 
data using FC ???


 

Anurag 

Date: Sat, 1 Feb 2014 19:18:46 +1100
Subject: RE: [Veritas-bu] Netbackup With Data Domain,
From: mikhail.niki...@gmail.com

To: sharma.anu...@hotmail.com
CC: sunilgulati1...@gmail.com; veritas-bu@mailman.eng.auburn.edu


Anurag,
This is not correct.
Several DD models have been qualified by Symantec and EMC for DD Boost over FC 
on NBU 7.6 and DD OS 5.3+/BOOST plug-in 2.6+
You may want check NBU HCL and my.datadomain.com if you have missed the 
announcement from EMC.
Best regards, Mikhail
On 01/02/2014 6:39 pm, Anurag Sharma sharma.anu...@hotmail.com wrote:





Sunit

DDBOOST on FC not possible. 

Do FC if you want VTL deployments.

DDBOOST works at high speed on 10g network.

So it depends what you have if you can have 10g connectivity between media 
servers and DD then go for DDBOOST



else go fibre with VTL implementation

Also you can not use one DD device as VTL and DDBOOST at the same time.

Anurag

Date: Mon, 27 Jan 2014 23:58:33 +1100
From: mikhail.niki...@gmail.com


To: sunilgulati1...@gmail.com
CC: VERITAS-BU@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Netbackup With Data Domain,



Hi Sunil,
I believe you can use DD Boost over FC between media server and DD. With 
NetWorker you can use ClientDirect with FC, too if memory serves me well.

However, DDs can't replicate over FC atm, you have to use 1 or 10 gig links to 
replicate data. 
Of course you need DD OS 5.4+, DD Boost plug-in 2.6+ and NBU 7.6. Don't forget 
to check your FC infrastructure with EMC for DD Boost over FC compatibility. 
EMC pre-sales should pass your configuration through a qualification process, 
in theory.



Best regards, Mikhail


On 27/01/2014 8:46 pm, Sunil Gulati sunilgulati1...@gmail.com wrote:



Hello, Can we use DDboost feature over FC ? Like I have production and a DR 
site in my environment. I have data domain  netbackup media servers at both 
location. I have kept tape library at my primary site for tape outs.



 I want to use SLP which will run 4 backup jobs  (Backup, Replication, Import  
duplication) means I'll be replicating my backup images from production site to 
DR site using DDboost. 



I want to know if I can use the same over FC ?  Thanks Sunil  

___

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] Netbackup With Data Domain,

2014-02-01 Thread Anurag Sharma
Mikhal,

I have not checked the latest one so you could be right.

But explain me this. 

When you are doing DDBOOST over FC how media server will see DD and Storage 
Server and that communication would still have to be through IP right ? So I 
guess you will establish initial connection using mangement IP then transfer 
data using FC ???

 

Anurag 

Date: Sat, 1 Feb 2014 19:18:46 +1100
Subject: RE: [Veritas-bu] Netbackup With Data Domain,
From: mikhail.niki...@gmail.com
To: sharma.anu...@hotmail.com
CC: sunilgulati1...@gmail.com; veritas-bu@mailman.eng.auburn.edu

Anurag,
This is not correct.
Several DD models have been qualified by Symantec and EMC for DD Boost over FC 
on NBU 7.6 and DD OS 5.3+/BOOST plug-in 2.6+
You may want check NBU HCL and my.datadomain.com if you have missed the 
announcement from EMC.
Best regards, Mikhail
On 01/02/2014 6:39 pm, Anurag Sharma sharma.anu...@hotmail.com wrote:




Sunit

DDBOOST on FC not possible. 

Do FC if you want VTL deployments.

DDBOOST works at high speed on 10g network.

So it depends what you have if you can have 10g connectivity between media 
servers and DD then go for DDBOOST


else go fibre with VTL implementation

Also you can not use one DD device as VTL and DDBOOST at the same time.

Anurag

Date: Mon, 27 Jan 2014 23:58:33 +1100
From: mikhail.niki...@gmail.com

To: sunilgulati1...@gmail.com
CC: VERITAS-BU@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Netbackup With Data Domain,


Hi Sunil,
I believe you can use DD Boost over FC between media server and DD. With 
NetWorker you can use ClientDirect with FC, too if memory serves me well.

However, DDs can't replicate over FC atm, you have to use 1 or 10 gig links to 
replicate data. 
Of course you need DD OS 5.4+, DD Boost plug-in 2.6+ and NBU 7.6. Don't forget 
to check your FC infrastructure with EMC for DD Boost over FC compatibility. 
EMC pre-sales should pass your configuration through a qualification process, 
in theory.


Best regards, Mikhail


On 27/01/2014 8:46 pm, Sunil Gulati sunilgulati1...@gmail.com wrote:


Hello, Can we use DDboost feature over FC ? Like I have production and a DR 
site in my environment. I have data domain  netbackup media servers at both 
location. I have kept tape library at my primary site for tape outs.


 I want to use SLP which will run 4 backup jobs  (Backup, Replication, Import  
duplication) means I'll be replicating my backup images from production site to 
DR site using DDboost. 


I want to know if I can use the same over FC ?  Thanks Sunil  

___

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] Splitting NetBackup Domain to Two

2014-01-31 Thread Anurag Sharma
Mike,

Thank you for detailed response.

At the time of running nbdecomission on mediaB I will move the references to 
mediaA for future restores in order to determine the tape labels for the 
restores.

For the existing tapes in the library at mediaB I will move all of them to to 
DONOTOVERWRITE custom pool or simply ship them to iron mountain where most of 
our tapes are as of now.

I am not so sure about AIR as of now coz we are using falconstor for dedupe 
don't know if that supports that I heard as of now its supported on NBU 
appliance and PDDO only . How air you doing AIR in your setup ?


Anurag 



From: michael.f.lave...@abbott.com
To: sharma.anu...@hotmail.com; veritas-bu@mailman.eng.auburn.edu; 
veritas-bu-boun...@mailman.eng.auburn.edu
CC: michael.f.lave...@abbott.com
Subject: RE: [Veritas-bu] Splitting NetBackup Domain to Two
Date: Fri, 31 Jan 2014 21:17:02 +









If you are going to do this, and size the media server at site B appropriately, 
then…
 
Set up each as Auto Image Replication sites for each other.  You have VTL at 
both sites, so you should be able to replicate.
Don’t be afraid to fund an additional media server for domain B.
 
Hopefully, the OS for existing  prospective master are the same.  The server 
hardware base should be similar, but not on the identical refresh schedule (you
 don’t want to have to refresh both in the same year).
 
I’m assuming you have WAN stability problems and are fed up with it.  We have 
five NetBackup domains within 40 miles on the map around the San Francisco Bay
 area.  We’ve gone thru fission and fusion.  From the Central Time Zone, it 
makes so much sense to consolidate to one domain with media servers and storage 
units in each data center.  From an operational stability standpoint, 5 nights 
of failed backups a month
 because of the WAN is not tolerable.
Try to manage both domains as if they were the same domain.  Use the same 
naming conventions for policies, storage units, etc…
 
The biggest operational challenge is turning domain B on.  Media handling is 
the biggest issue.  Give the media owned by media/master B to media for A so you
 can track it.  Physical tape is easy.  VTL “tapes” are less so.  You are going 
to be able to import the tapes into domain B once you get the B master created. 
 It’s starting from scratch.  The media known in domain A is essentially for a 
working list retained
 so you can use it to complete and verify your imports into domain B.
 
Good luck.
 


From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu]
On Behalf Of Anurag Sharma

Sent: Friday, December 27, 2013 3:07 PM

To: veritas-bu; veritas-bu2

Subject: [Veritas-bu] Splitting NetBackup Domain to Two


 

Experts,








This is the current setup 
 
1 Master server at SITE A
 
2 Media servers  out of which 1 at SITE A 1 at SITE B
 
I would like to separate SITE A and SITE B so that I do not have dependency on 
only one Master server which is a single point of failure , so basically I am 
looking at upgrading SITE B media server as Master server.
 
 
 
We have separate VTL and Tape Library at each site.
 
VTL Zoning and Tape Library Zoning already done on SITE B media server.
 
In my mind it is just upgrading the binaries re adding the devices and pointing 
the clients to new master server for new backups and still doing restores from 
the old master servers for older data. Is there anything
 I am missing.?
 
If anyone has done it please share.
 
 
Anurag 

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


Re: [Veritas-bu] Netbackup With Data Domain,

2014-01-31 Thread Anurag Sharma
Sunit

DDBOOST on FC not possible. 

Do FC if you want VTL deployments.

DDBOOST works at high speed on 10g network.

So it depends what you have if you can have 10g connectivity between media 
servers and DD then go for DDBOOST

else go fibre with VTL implementation

Also you can not use one DD device as VTL and DDBOOST at the same time.

Anurag

Date: Mon, 27 Jan 2014 23:58:33 +1100
From: mikhail.niki...@gmail.com
To: sunilgulati1...@gmail.com
CC: VERITAS-BU@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Netbackup With Data Domain,

Hi Sunil,
I believe you can use DD Boost over FC between media server and DD. With 
NetWorker you can use ClientDirect with FC, too if memory serves me well.

However, DDs can't replicate over FC atm, you have to use 1 or 10 gig links to 
replicate data. 
Of course you need DD OS 5.4+, DD Boost plug-in 2.6+ and NBU 7.6. Don't forget 
to check your FC infrastructure with EMC for DD Boost over FC compatibility. 
EMC pre-sales should pass your configuration through a qualification process, 
in theory.

Best regards, Mikhail


On 27/01/2014 8:46 pm, Sunil Gulati sunilgulati1...@gmail.com wrote:

Hello, Can we use DDboost feature over FC ? Like I have production and a DR 
site in my environment. I have data domain  netbackup media servers at both 
location. I have kept tape library at my primary site for tape outs.

 I want to use SLP which will run 4 backup jobs  (Backup, Replication, Import  
duplication) means I'll be replicating my backup images from production site to 
DR site using DDboost. 

I want to know if I can use the same over FC ?  Thanks Sunil  

___

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


[Veritas-bu] NBU Admin : San Diego

2014-01-20 Thread Anurag Sharma
Hi All,

NOTE : THIS POSITION REQUIRES THE PERSON TO BE AMERICAN CITIZEN OR VALID GREEN 
CARD/HIB HOLDER IN ADVANCE NO SPONSORSHIP IS PROVIDED

I apologies for this post, however I'm just not getting a good NBU admin in San 
Diego.


We have an urgent requirement for NBU admin @ San Diego.

The candidate can be from NBU + Unix or NBU + windows background.


This is  a contract to hire position.


Anyone interested or knows somebody interested please let me know.

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


Re: [Veritas-bu] Splitting NetBackup Domain to Two

2014-01-02 Thread Anurag Sharma
Justin, 

 

How about this.

I will setup a new master at SITE B and connect SITE B mediaserver to this new 
master server.

Now if I get the restore request for an earlier date before the new master 
server went live I would have to run this from old master server which will 
contact this media server.

How does this sound as solution??? others also please give your valuable 
insights

Date: Sun, 29 Dec 2013 13:30:22 -0700
From: sjaco...@novell.com
To: sharma.anu...@hotmail.com; jpis...@lucidpixels.com; 
veritas-bu@mailman.eng.auburn.edu; veritas-bu-boun...@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Splitting NetBackup Domain to Two








What NBU versions and OS are at sites A and B?

 Justin Piszcz jpis...@lucidpixels.com 12/27/2013 2:56 PM 


Hi,
 
I've never used a master server as a media server for another master server's 
restores and to have it be its own master server as well, I'm not sure if/how 
that would work - I'll let others on the list comment on that one.
 
Aside from changing things around a bit (possibly partitioning the Site B robot 
if SL8500 or similar) and buying new hardware, I'm not sure I see a clean way 
to separate the two.  The two big problems here are the different tape mediums 
between the two sites and lack of new hardware.  If you have an SL8500 and you 
partition it, you could present the robot + 1-2 drives to the Site-A master 
server, leave the media server intact at Site B.  Then, build out a new 
environment (master/media servers) (for the other part of the SL8500 
robot/tapes) at Site B.
 
I'd be really curious how others would approach this as well..  I've only done 
this one with mixed mediums and I migrated the data or let it expire for the 
non-LTO drives so I had a common medium, then it was easier to 
migrate/move/have restores in different locations.
 
Justin.
 



From: Anurag Sharma [mailto:sharma.anu...@hotmail.com] 
Sent: Friday, December 27, 2013 4:36 PM
To: Justin Piszcz; veritas-bu; veritas-bu2
Subject: RE: [Veritas-bu] Splitting NetBackup Domain to Two
 

Justin,

Thank you for quick response.

I have separate libraries at each site. SITE B is T1C tape type and SITE A 
is LTO3/LTO4 tape type.

The only time I would need the older master server is when restore request 
comes for an older date and image data is still in old master server.

Another reason I wanted to upgrade existing media server is 

1. I do not want to buy new server
2. All the devices Tape libraries and VTLs are already zoned and configured.

The retention on tapes is 7 years which is a very long time, and its an implied 
problem because we simply can not wait for 7 years for spliting I really want 
to loose some burden from one master server and I do not find it logical to 
have just one master server.

Please let me know your further thoughts.

Anurag







From: jpis...@lucidpixels.com
To: sharma.anu...@hotmail.com; veritas-bu@mailman.eng.auburn.edu; 
veritas-bu-boun...@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] Splitting NetBackup Domain to Two
Date: Fri, 27 Dec 2013 16:14:19 -0500

Hi Anurag Sharma,
 
There are probably quite a few ways to approach this problem.
I've done master+media+robot moves/migrations on a regular basis for quite some 
time.
 
The first question you have to ask yourself is for the data in Site B-how long 
until the data expires on the tapes in this robot or can you move It to site A 
in the meantime?  My recommendation would be as follows:
 
1.   Move the tapes with data on them from SITE B to SITE A
2.   Add FORCE_RESTORE_MEDIA_SERVER MEDIA_B MEDIA_A in bp.conf so it will 
restore from the media server in Site A (assuming the tape medium is 
compatible).
3.   Rebuild/re-install NetBackup fresh as a new installation at Site B and 
setup accordingly.
4.   I would advise against intermingling two separate master server 
environments.
 
Justin.
 
 



From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Anurag Sharma
Sent: Friday, December 27, 2013 4:07 PM
To: veritas-bu; veritas-bu2
Subject: [Veritas-bu] Splitting NetBackup Domain to Two
 

Experts,



This is the current setup 
 
1 Master server at SITE A
 
2 Media servers  out of which 1 at SITE A 1 at SITE B
 
I would like to separate SITE A and SITE B so that I do not have dependency on 
only one Master server which is a single point of failure , so basically I am 
looking at upgrading SITE B media server as Master server.
 
 
 
We have separate VTL and Tape Library at each site.
 
VTL Zoning and Tape Library Zoning already done on SITE B media server.
 
In my mind it is just upgrading the binaries re adding the devices and pointing 
the clients to new master server for new backups

Re: [Veritas-bu] Splitting NetBackup Domain to Two

2013-12-27 Thread Anurag Sharma
Justin,

Thank you for quick response.

I have separate libraries at each site. SITE B is T1C tape type and SITE A 
is LTO3/LTO4 tape type.

The only time I would need the older master server is when restore request 
comes for an older date and image data is still in old master server.

Another reason I wanted to upgrade existing media server is 

1. I do not want to buy new server
2. All the devices Tape libraries and VTLs are already zoned and configured.

The retention on tapes is 7 years which is a very long time, and its an implied 
problem because we simply can not wait for 7 years for spliting I really want 
to loose some burden from one master server and I do not find it logical to 
have just one master server.

Please let me know your further thoughts.

Anurag



From: jpis...@lucidpixels.com
To: sharma.anu...@hotmail.com; veritas-bu@mailman.eng.auburn.edu; 
veritas-bu-boun...@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] Splitting NetBackup Domain to Two
Date: Fri, 27 Dec 2013 16:14:19 -0500

Hi Anurag Sharma, There are probably quite a few ways to approach this 
problem.I’ve done master+media+robot moves/migrations on a regular basis for 
quite some time. The first question you have to ask yourself is for the data in 
Site B—how long until the data expires on the tapes in this robot or can you 
move It to site A in the meantime?  My recommendation would be as follows: 1.   
Move the tapes with data on them from SITE B to SITE A2.   Add 
FORCE_RESTORE_MEDIA_SERVER MEDIA_B MEDIA_A in bp.conf so it will restore from 
the media server in Site A (assuming the tape medium is compatible).3.   
Rebuild/re-install NetBackup fresh as a new installation at Site B and setup 
accordingly.4.   I would advise against intermingling two separate master 
server environments. Justin.  From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Anurag Sharma
Sent: Friday, December 27, 2013 4:07 PM
To: veritas-bu; veritas-bu2
Subject: [Veritas-bu] Splitting NetBackup Domain to Two Experts,



This is the current setup  1 Master server at SITE A 2 Media servers  out of 
which 1 at SITE A 1 at SITE B I would like to separate SITE A and SITE B so 
that I do not have dependency on only one Master server which is a single point 
of failure , so basically I am looking at upgrading SITE B media server as 
Master server.   We have separate VTL and Tape Library at each site. VTL Zoning 
and Tape Library Zoning already done on SITE B media server. In my mind it is 
just upgrading the binaries re adding the devices and pointing the clients to 
new master server for new backups and still doing restores from the old master 
servers for older data. Is there anything I am missing.? If anyone has done it 
please share.  Anurag   ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] NetBackup SMEs required

2013-12-11 Thread Anurag Sharma
THIS POSITION IS IN INDIA ONLY 

NetBackup SMEs required urgently Ericsson anybody intersted please share your 
resume at sharma.anu...@hotmail.com ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] How to know biggest client backup ?

2013-11-29 Thread Anurag Sharma
Awesome Anatoly
Let me try and get back to you.


Anurag

 Date: Fri, 29 Nov 2013 13:03:06 +0400
 Subject: Re: [Veritas-bu] How to know biggest client backup ?
 From: mator...@gmail.com
 To: sharma.anu...@hotmail.com
 CC: veritas-bu@mailman.eng.auburn.edu; 
 veritas-bu-boun...@mailman.eng.auburn.edu
 
 Anurag,
 
 1) install opscenter and use included functionality for reporting
 
 2) use NBU command line,
 
 [root@nbu7 ~]# bpdbjobs -report -gdm
 25,17,3,1,1385714991,01,1385714992,nbu7,,,0
 24,0,3,0,tmp1,Full,nbu7,nbu7,1385714978,14,1385714992,st1,0,0,0,nbu7,37056,127,100
 
 where 37056 is backup size. So easily scripting could give like
 clients and their backup size:
 
 # bpdbjobs -report -gdm | awk -F, '{print $7,$17}' | sort
 
 3) export (File-Export) 'Activity monitor' page of Netback
 Administration Console to a file and use external tools (speadsheet)
 to parse it.
 
 Wed, Nov 27, 2013 at 11:55 PM, Anurag Sharma sharma.anu...@hotmail.com 
 wrote:
  Hi All,
 
  My query is simple, I have backups going to VTL then duplicated to tape.
 
  Now VTL is filling up badly and need to move some of backups directly to the
  tapes.
 
  Could any one tell me the easiest way to list top 10 backups ( as per their
  backup size ) on VTL storage unit which I can move directly to the tapes for
  the time being.
 
  ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] How to know biggest client backup ?

2013-11-29 Thread Anurag Sharma
Harpreet,

You are a genius man, thanks a lot, it worked right away.

I know I'm being mean but cant it be modified further to export to exce ?


All please keep a copy of this script it can really help with sizing issues and 
growth rattans

Thank you all for reply

Anurag 

Date: Fri, 29 Nov 2013 20:56:44 +0800
Subject: Re: [Veritas-bu] How to know biggest client backup ?
From: harpreetra...@gmail.com
To: sharma.anu...@hotmail.com
CC: mator...@gmail.com; veritas-bu@mailman.eng.auburn.edu; 
veritas-bu-boun...@mailman.eng.auburn.edu

Hi Anrag, You can try this script. Please change the path accordingly.I have 
tested on Solaris/Linux. it is workiing fine. With Warm Regards
Harpreet

On Fri, Nov 29, 2013 at 7:01 PM, Anurag Sharma sharma.anu...@hotmail.com 
wrote:




Awesome Anatoly
Let me try and get back to you.


Anurag

 Date: Fri, 29 Nov 2013 13:03:06 +0400
 Subject: Re: [Veritas-bu] How to know biggest client backup ?
 From: mator...@gmail.com

 To: sharma.anu...@hotmail.com
 CC: veritas-bu@mailman.eng.auburn.edu; 
 veritas-bu-boun...@mailman.eng.auburn.edu

 
 Anurag,
 
 1) install opscenter and use included functionality for reporting
 
 2) use NBU command line,
 
 [root@nbu7 ~]# bpdbjobs -report -gdm
 25,17,3,1,1385714991,01,1385714992,nbu7,,,0

 24,0,3,0,tmp1,Full,nbu7,nbu7,1385714978,14,1385714992,st1,0,0,0,nbu7,37056,127,100
 
 where 37056 is backup size. So easily scripting could give like
 clients and their backup size:
 

 # bpdbjobs -report -gdm | awk -F, '{print $7,$17}' | sort
 
 3) export (File-Export) 'Activity monitor' page of Netback
 Administration Console to a file and use external tools (speadsheet)

 to parse it.
 
 Wed, Nov 27, 2013 at 11:55 PM, Anurag Sharma sharma.anu...@hotmail.com 
 wrote:
  Hi All,
 

  My query is simple, I have backups going to VTL then duplicated to tape.
 
  Now VTL is filling up badly and need to move some of backups directly to the
  tapes.
 

  Could any one tell me the easiest way to list top 10 backups ( as per their
  backup size ) on VTL storage unit which I can move directly to the tapes for
  the time being.
 

  

___

Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu

http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu




-- 
*
With Warm Regards.
Harpreet Singh Chana
*
  ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


[Veritas-bu] How to know biggest client backup ?

2013-11-27 Thread Anurag Sharma
Hi All,

My query is simple, I have backups going to VTL then duplicated to tape.

Now VTL is filling up badly and need to move some of backups directly to the 
tapes.

Could any one tell me the easiest way to list top 10 backups ( as per their 
backup size ) on VTL storage unit which I can move directly to the tapes for 
the time being.

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


Re: [Veritas-bu] How to know biggest client backup ?

2013-11-27 Thread Anurag Sharma
Any other opinions please ?
 
From: sharma.anu...@hotmail.com
To: veritas-bu@mailman.eng.auburn.edu; veritas-bu-boun...@mailman.eng.auburn.edu
Date: Thu, 28 Nov 2013 01:25:49 +0530
Subject: [Veritas-bu] How to know biggest client backup ?




Hi All,

My query is simple, I have backups going to VTL then duplicated to tape.

Now VTL is filling up badly and need to move some of backups directly to the 
tapes.

Could any one tell me the easiest way to list top 10 backups ( as per their 
backup size ) on VTL storage unit which I can move directly to the tapes for 
the time being.

Regards
Anurag

___
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] How to verify if unix exclude list is working ?

2013-11-12 Thread Anurag Sharma
Thanks for your input guys.

 Date: Wed, 6 Nov 2013 09:54:45 -0500
 Subject: Re: [Veritas-bu] How to verify if unix exclude list is working ?
 From: jpis...@lucidpixels.com
 To: sharma.anu...@hotmail.com
 CC: veritas-bu@mailman.eng.auburn.edu; 
 veritas-bu-boun...@mailman.eng.auburn.edu
 
 HI,
 
 The easiest way?
 Run a full backup with ALL_LOCAL_DRIVES and make sure what you
 excluded is excluded from the host's backups (attempt restore
 thereafter, make sure the files are not included).
 
 Another way?
 Bump up VERBOSE to VERBOSE = 5 in bp.conf and mkdir bpbkar log on the
 client and make sure the files are excluded from the backup in the
 log.
 
 Justin.
 
 On Wed, Nov 6, 2013 at 9:08 AM, Anurag Sharma sharma.anu...@hotmail.com 
 wrote:
  All,
 
  I followed the following technote to create a new exclude list
 
  http://www.symantec.com/business/support/index?page=contentid=TECH30603
 
 
  The name format of the exclude list is exclude_list.NEW_POLICY
 
 
  I have created a new dedicated policy by the name NEW_POLICY.
 
  I'm seeing an improvement in the backup performance, however how do I verify
  that exclude_list is indeed working.
 
 
 
  Anurag Sharma
 
  ___
  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] Red Hat Snapshot Client Configuration

2013-11-12 Thread Anurag Sharma
Hi All,

I have a Red Hat 4.4 Client with millions of small files , so the regular 
STANDERD unix backup of a particular share is not completing.  I thought we 
could to snapshot client backups. However I'm bit confused if I need a SAN 
based HARDWARE snapshot provider or would I need something like Veritas Voloume 
Manger to take the snapshot. In case of windows VSS can take the snapshots 
however I'm not sure if this version of Red Hat comes with any snapshot 
provider.

If anyone has successfully configured Red Hat Snapshot Client backups please 
let me know.

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


[Veritas-bu] How to verify if unix exclude list is working ?

2013-11-06 Thread Anurag Sharma
All,

I followed the following technote to create a new exclude list

http://www.symantec.com/business/support/index?page=contentid=TECH30603


The name format of the exclude list is exclude_list.NEW_POLICY


I have created a new dedicated policy by the name NEW_POLICY.

I'm seeing an improvement in the backup performance, however how do I verify 
that exclude_list is indeed working.



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


Re: [Veritas-bu] Post upgrade 7.5.0.5 issues?

2013-06-16 Thread Anurag Sharma
David,

Wait for 7.6 if you want to implement all features of 5.1
or else
update to 7.5.0.5 with esx 5.0.

The key to understand here is this vmware may come with updates every now and 
then however it takes some time for symantec to release compatible binaries for 
the same.

In my opinion waiting for 7.6 is better before implementing 5.1 as the VDDK for 
5.1 is not stable and has backup issues this has been accepted by VMware. 

Anurag


From: da...@stanaway.net
Date: Mon, 10 Jun 2013 16:44:03 -0500
To: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Post upgrade 7.5.0.5 issues?


So what is the verdict on 7.5.0.5?
I am looking to upgrade 7.1.0.3 to 7.5.0.5 W2K8 master, using vstorage API 
backups of 5.0 esx, and KMS for managing LTO4 encryption keys, and DDBoost for 
data domain OST disk pools.
I want to update esx to 5.1 and allow for SQL 2012 and windows server 
2012.___David Stanaway - 
david@stanaway.net___
On May 20, 2013, at 10:09 AM, Rusty Major rusty.ma...@sungard.com wrote:

I would say if you aren't having the issue with NBSL, I would not patch it.
The only damage we see with it is a Java UI that won't load completely and 
failures with OpsCenter to connect to the Master. Jobs continue to run and kick 
off as expected, we just can't manage them through the UI.


-Rusty

On Sun, May 19, 2013 at 11:27 PM, Lavelle, Michael F 
michael.f.lave...@abbott.com wrote:









All,
7.5.0.6 has been rescheduled for late June.  The new CEO of 
Symantec is aware of declining reliability and increases in EEB creation.

 
We are running three NetBackup 7.5.0.5 domains under RedHat 5 
(2.6.18-348) and VCS 5.0.  We are running with two EEBs installed:

 
ET3106719 – the ghost jobs issue which replaces nbjobd
ET3156426 – image catalog filesystem grows dramatically thru failure to 
properly clean the old files

This replaces nbpem  bpdbm
 
We also need to upgrade past VCS 5.0.  VCS had been masking the 
“largefiles” option of VxFS and the BMR_DATA.db file grep to 2 GB in the primary
 UNIX domain.  Instance crashed since it could not extend the BMR database.  
Recovered OK – thanks to Matthew in Australia.  We also have a work around for 
the VCS mask of “largefiles”.
 
We really need 7.5.0.6 for Windows Server 2012 support.  This 
is really not funny.  This proliferation was needed before the end of the year. 
 That if flunked out of 7.5.0.5 and requires 7.5.0.6 is bad enough.  The funny 
thing is that the 7.5.0.6 release is now being delayed because the new Symantec 
CEO smells the quality of what has been released in recent years (needed 
features, but new and unexpected
 bugs along with the new code), and is demanding actual engineering 
qualification of code releases.  Here’s hoping NBU 7.6 is delayed longer and 
for the same good reasons.
 
 
Rusty,
If you were me, and I already am running with two EEBs, and 
have not experienced the NBSL crash and core dump, would you prophylactically 
apply
 EEB ET3123001 on top of the others?  I do not want to run a regression testing 
lab for Symantec.
 
 
From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu]
On Behalf Of Rusty Major

Sent: Thursday, May 16, 2013 2:26 PM

To: Kohli, Vidit

Cc: veritas-bu@mailman.eng.auburn.edu

Subject: Re: [Veritas-bu] Post upgrade 7.5.0.5 issues?

 
Don't wait, there is a fix for the NBSL issues. You might want to call support 
to make sure you get the right EEB for your issue as there is more than one.



-Rusty

On Thu, May 16, 2013 at 12:15 PM, Kohli, Vidit vidit.ko...@blackrock.com 
wrote:


There is major bug in 7.5.0.5 as per Symantec, so better wait for 7.5.0.6
 
nbsl experiences a memory leak which results in a core dump.

http://www.symantec.com/docs/TECH201979

 
Product
The following versions of NetBackup are affected by this issue:

NetBackup 7.5.0.5
 
Summary
The nbsl daemon crashes intermittently and creates a core dump. It was observed 
that memory consumed by nbsl was constantly growing, and when it reached 
somewhere around 4GB, nbsl
 would crash.
 
This issue is scheduled to be addressed in the following release:
·
NetBackup 7.5 Maintenance Release 6 (7.5.0.6)

 
 


From:
veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu]
On Behalf Of Justin Piszcz

Sent: Wednesday, May 15, 2013 5:13 PM

To: 'Dwayne Adams'; 
veritas-bu@mailman.eng.auburn.edu



Subject: Re: [Veritas-bu] Post upgrade 7.5.0.5 issues?




 
Hi,
 
Unsure for Windows, for Linux/64-bit and
7.5.0.5:
 
Yes there is a problem with ghost jobs: (you will see 100s-1000s of jobs Active 
but they really complete)

 
This EEB fixes that issue:
https://www.symantec.com/business/support/index?page=contentid=TECH203521

 
Justin.
 


From:
veritas-bu-boun...@mailman.eng.auburn.edu 

Re: [Veritas-bu] Not able to run NBCC

2013-05-03 Thread Anurag Sharma
Hi Pranav,

Sorry for the late response.

Before running nbcc try running nbdbadmin.exe its gui interface will tell 
information about nbdb and associated databases right away.

Anurag

From: pranav_vent...@hotmail.com
To: veritas-bu@mailman.eng.auburn.edu
Date: Fri, 12 Apr 2013 14:33:49 +0530
Subject: [Veritas-bu] Not able to run NBCC




Hello Geeks,
I have one query here , we have to upgrade our master server which is presently 
running on Netbackup 7.0 on windows 32 bit 2003 platform.The server language is 
in Japanese so of Netbackup.
Now as for upgrade we are trying to run NBCC and it is giving us error.
2.1  Processing detected NetBackup server entries   There were no entries 
in the internal server entries list to process

 NBCC aborted!  No NetBackup catalog information was gatheredor checked.
We have tried running NCC with switch use_reg_cmd  32 -kbfree.
http://www.symantec.com/business/support/index?page=contentid=TECH153186
has anyone faced similar issue ?
What are the possible options we can check to troubleshoot this ?Symantec has 
also checked but couldn't come to anything as of now.
Kindly advise.
PB

___
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] NDMP/isilon throughput question

2013-05-03 Thread Anurag Sharma
Hi Dan,

I dont know if my rsponse on this is still relevent.

First of all there are 2 kinds of NDMP backup.
Local NDMP in this filer accesses the library locally via scsi or fc
Remote NDMP one filer sends the backup data to library connected to another 
filer

When you send the backups to library connected to nbu media server it is called 
3 way (which is a form of remote) ndmp.


Now coming to performence on isilon
It will be much better almost 10times of what you are getting now as it is 
going to be disk bases however connection should be over 10Gbe also i would say 
decide whether you want backups or archiveif u just want to archive go with 
data domain dd 990 archiver which gives arhives with dedupe.

Anurag

Date: Tue, 26 Feb 2013 15:46:08 -0500
From: da...@umich.edu
To: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] NDMP/isilon throughput question







  

Currently I have two EMC Celerra NS120's, and I use 3-way NDMP 
direct to 
tape to back them up.  This works reasonably well and I get reported 
throughput of 90MB/sec on multiple streams.



I'm looking at buying an Isilon system (3x X200), and am considering
 
whether to continue to use 3-way NDMP (and buy isilon's fibre channel 
backup appliance to do so), move to 2-way NDMP, or possibly something 
else.



In particular I'm wondering about what kind of performance I can 
expect 
with 2-way NDMP.





...and as i read some docs I think I've gotten the meaning of 
2-way and 
3-way NDMP confused.  



current setup:  EMC NS120's are connected by fibre channel to the tape 
drives.  netbackup server is only doing control, no data traffic goes 
through the netbackup server.



proposed setup:  isilon sends data over ethernet to netbackup server, 
which writes data to tape via fibre channel.  



-- 
Dan Pritts

ICPSR Computing  Network Services

University of Michigan

+1 (734)615-7362




___
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] VMware backup host

2012-12-16 Thread Anurag Sharma

Hi Howard,
I'm sure you must have found solution by now.
Still wanted to tell you that what you are trying to achive is possible as long 
as you are using VADP (vStorage API for Data Protection) not VCB.
The reason is VCB server needs the staging loction but VMware Backup Host does 
not.

Only thing you need to keep in mind is the LUNS of the specific ESX 
Datastore/Cluster needs to be presented to the VMware Backup host  at the time 
of backup in order to run backup on SAN else you can always go for NBD without 
problem.
Let me know if my response was of any help to you.
Best Regards.Anurag From: hgray...@cspire.com
To: veritas-bu@mailman.eng.auburn.edu
Date: Wed, 3 Oct 2012 20:40:58 +
Subject: [Veritas-bu] VMware backup host










Does a media server that’s designated as a VMware off-host backup need to be 
attached to storage?  The reason for asking is that my current server used for 
VMware backups is broken and I’ve been working with support to fix it for at 
least 2 weeks. I found
another server and installed Windows 2008 R2 and Netbackups 7.1.0.4 on it.  
However…it doesn’t have any storage attached to it.  If I set the policy to use 
this server as the off-host backup server but specify another datastore, will 
this work?
 
In essence what I’m trying to do is build a server to handle the Vmware 
backups, but using another media server to actually write the data.  I’m going 
to look through the VMware admin guide, but also wanted to post the question to 
the group.
 
 
 




___
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] Netbackup , Vmware and Netapp

2012-09-05 Thread Anurag Sharma
Abhishek,

Go for NetBackup 7.5.

Reason: You can combine following 3 types of backups from single console.

1: Traditional Backups
2. VADP Vstorage API Backups
2. Snapshots: NetBackup 7.5 comes with Replication Director. Which allows you 
to combine Snapshots using NetBackup SLP. how cool is that. !!!


Anurag

Date: Tue, 4 Sep 2012 11:40:00 -0400
From: wtsm...@maine.edu
To: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Netbackup , Vmware and Netapp

I'd consider NetApp's Snap Mirror / Snap Vault.
Cheers, Wayne

On Tue, Sep 4, 2012 at 9:02 AM, Abhishek Dhingra1 abhishek.dhin...@in.ibm.com 
wrote, in part:


I have an infrastructure , where i have a critical windows machine on ESXi

box, total space occupied is 6TB, and the disk are coming from Netapp box.



Server has huge number of files and size of the files are in Kb's and Mb's.



Please suggest a way , how to integrate all three technologies and get the

optimum solution for backup.




___
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] VMWare Backup Maximum number of LUNS that can be presented to windows 2008 R2

2012-07-27 Thread Anurag Sharma




VMWare Backup Maximum number of LUNS that can be presented to windows 2008 R2  
Hi All, This is the configuation of our NetBackup Master Server Operating 
System :Windows 2008 R2  Standard x64
Processor : Intel Xeon 3.6o GHz x64
RAM : 12GB We are in the process of implementing vstorage Backup with 
NetBackup. In order to use SAN transport medium we would need to present all 
ESX luns 
Currently our ESX infrastructre has 200 LUNS. Would it be possible to present 
200 LUNS on this box ? This box will be our VMware Backup host As per windows 
fourms there is no limit as longs as we dont give them drive letter.We have 
automount and auto scrub disabled as well Anyone who has done Vstorage/VCB 
implemntation please share best practices  ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] Netbackup 7.1 Migration

2012-07-15 Thread Anurag Sharma

Sri, Make sure you keep both old and new on same version and patch level. Word 
of advice, 7.5 upgrade is not so simple it involves a stage call image 
migration.
  To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
 From: nbu-fo...@backupcentral.com
 Date: Wed, 11 Jul 2012 23:27:43 -0700
 Subject: [Veritas-bu]  Netbackup 7.1 Migration
 
 Here's the plan, please correct me if wrong:
 
 1. Install NBU  on new server and configure all the policies,devices from 
 scratch. 
 2. take catalog backup on old master server and stop NBU services.
 3. Use recover without import option and import all data tapes from old 
 master to new master.
 4. The NBU services are not running on old master server, but since that is a 
 production server we need to backup the data on it. So configure old master 
 as client in new master.
 
 Versions:
 ---
 Old master server: NBU 7.1 Standard
 New master server: NBU 7.5 Enterprise
 
 Please advice, will there be any compatibility issues?
 
 Thanks  Regards
 Sri
 
 +--
 |This was sent by st.sr...@gmail.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] Upgrade NetBackup from 6.5.6 (x86) to 7.1.0.4 (x64)

2012-06-27 Thread Anurag Sharma

Very Nice Kevin Thank you for sharing. Others can also keep as this can be 
quite instrumental in migrations. Anurag
 From: kevin.ocon...@esbi.ie
To: veritas-bu@mailman.eng.auburn.edu
Date: Thu, 7 Jun 2012 12:51:33 +0100
Subject: Re: [Veritas-bu] Upgrade NetBackup from 6.5.6 (x86) to 7.1.0.4 (x64)

Hi Anurag, This doc might be of some 
use.http://www.symantec.com/business/support/index?page=contentid=TECH77447 I 
recently upgraded to 7.0.1 and new hardware, after researching it a lot it was 
easier than I expected.We however kept the IP addresses the same to save hassle 
with media and client server connections, especially any behind a firewall.I 
also ran a catalog backup to a SAN disk for part of the migration. Here’s the 
general steps I carried out. 1.   The master server was running 6.5.5 on 
Windows 2003 so I first upgraded it to 7.0.1, NBUMServer1.2.   I had a 
second server with windows 2008 x64 R2 with a different name but no Netbackup 
installation, NBUMServer2.3.   I then stopped the NBUMServer1 services and 
disabled them in case someone tried to start them.4.   Rename NBUMServer1 
to NBUMServer35.   Assign new IP address to NBUMServer36.   Reboot 
NBUMServer37.   Delete the NBUMServer1 Active Directory account  DNS 
entry.8.   Make sure the IP address of NBUMServer1 is free (ping –a 
NBUMServer3_ipaddress should not name a server)9.   Change IP address on 
NBUMServer2 to NBUMServer1_ipaddress10.   Rename the NBUMServer2 to 
NBUMServer1.11.   Reboot the new NBUMServer1.12.   Connect SAN drive with 
Catalog backup to NBUMServer1.13.   Install Netbackup 7.0 x64 Master Server 
onto new NBUMServer1 box14.   Patch to 7.0.115.   Stop all Netbackup 
Services16.   Perform a Catalog restore from the SAN Drive17.   Add Media 
server list back into Netbackup (Host Properties  Master Servers  Servers  
Media Servers)18.   Reboot NBUMServer119.   Install Java and copy conf file 
from NBUMServer320.   Copy over hosts file from NBUMServer321.   Run nbtstat 
–R22.   Restart Netbackup Services At that point everything came up on the New 
Hardware as the original Master Server Name and with everything still intact. 
You could then connect both the ATL’s and the VTL to the new master server and 
have access to all of the old backups for restores. Hope that helps. 
RegardsKevin Kevin O’Connor | Storage Management | Service Delivery | 
Technology Solutions | ESB Business Service Centre | www.esb.ie From: Anurag 
Sharma [mailto:sharma.anu...@hotmail.com] 
Sent: 01 June 2012 5:28P
To: veritas-bu
Subject: [Veritas-bu] Upgrade NetBackup from 6.5.6 (x86) to 7.1.0.4 (x64) Hi 
Team,
 
We have one netbackup master server which is on x86 windows 2003 running 
netbackup 6.5.6 with two tape libraries LTO2/LTO3 respectively.
 
We have procured a new mastter server which is on 064 windows 2008 R2 with 
netbackup 7.1.0.4 with EMC data domain DD890.
 
Now we have to migrate all the backups from old master server to the new master 
server.
 
 
I have following questions
 
Is it possible to migrate netbackup from one hardware to another ? I know the 
the netbackup master serve name has to be the same but can it have a differnet 
IP  ???
 
I was thinking first upgrading the exisisting server to 7.5 and connect it to 
data domain and move all the backups to data domain storage units and then 
migrate to new hardware. Is this the right approach or is there a better 
approach.??
 
 
Please guide many of you might have upgraded from 6.5. Please through ideas.
 
 
Anurag 
An timpeallacht? - Smaoinigh air sula bpriontáileann tú an r-phost seo.
Please consider the Environment before printing this email. 

* ** *** ** * ** *** ** * ** *** ** *
Tá an t-eolas sa ríomhphost seo agus in aon chomhad a ghabhann leis rúnda agus 
ceaptha le haghaidh úsáide an té nó an aonáin ar seoladh chuige iad agus na 
húsáide sin amháin.
Is tuairimí nó dearcthaí an údair amháin aon tuairimí nó dearcthaí ann, agus ní 
gá gurb ionann iad agus tuairimí nó dearcthaí ESB.
Má bhfuair tú an ríomhphost seo trí earráid, ar mhiste leat é sin a chur in iúl 
don seoltóir.
Scanann ESB ríomhphoist agus ceangaltáin le haghaidh víreas, ach ní ráthaíonn 
sé go bhfuil ceachtar díobh saor ó víreas agus ní glacann dliteanas ar bith as 
aon damáiste de dhroim víreas.
Cláraithe an Chomhlachta: http://www.esb.ie/companies


This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed.
Any views or opinions presented are solely those of the author, and do not 
necessarily represent those of ESB.
If you have received this email in error please notify the sender.
Although ESB scans e-mail and attachments for viruses, it does not guarantee 
that either is virus-free or accepts no liability for any damage sustained as a 
result of viruses.
Company Registration Information: http://www.esb.ie/companies

[Veritas-bu] Netbackup 7.5 Operational Restore or Search Hold ??????

2012-04-18 Thread Anurag Sharma



  
All

I’ve been doing deep dive in NetBackup 7.5 and the benefits involved.
One of the greatest enhancements with this release is Opscenter and the role it 
is going to play in the future restores
 
Netbackup Opscenter 7.5 comes for free and the comes with the FREE feature of 
“operational restore”
Operational restore allows searching files acorss multiple Netbackup 
domains (master servers) and does not need any special licensing and\or 
hardware.
 
I also read in great depth about Netbackup 7.5 “Search and Hold” This
 can also search files across the multiple NetBackup domain (master 
servers). However this has following requirements
Search and Hold License to activate the same in opscenter Separate Index server 
(new role with Netabckup 7.5)
 
My question is why should an organization consider investing in 
search and hold license and buying expensive hardware for the index 
server when the same can be furnished by the operational restore feature
 ?

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


Re: [Veritas-bu] Netbackup Uprade to 7.1.0.4

2012-04-18 Thread Anurag Sharma

Daniel,

Go for 7.1.0.4 if you are using symantec deduplication... else not off use.

7.1.0.4 is the last release after that only option is netbackup 7.5

Date: Fri, 6 Apr 2012 21:22:50 -0700
From: nbu...@live.com
To: daniel.jime...@owb.com
CC: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] Netbackup Uprade to 7.1.0.4

We just upgraded from 7.0.1 to 7.1.0.3 and so far no issues.
Sent from my TAB. Please excuse spelling errors.
On Apr 6, 2012 10:45 PM, Jimenez, Daniel daniel.jime...@owb.com wrote:

Hey guys Anyone upgrade to 7.1.0.4? And those that did upgrade, can you tell me 
if the version seems stable or were there issues encountered after the upgrade? 
 Daniel Jimenez
Backup and Recovery
 
___

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] vmchange script

2012-02-20 Thread Anurag Sharma


Thank you Leo,

Could please tell me how can get a : seprated output if I already have a list 
of media to be expired in another text file in a tabular format ?

What I'm asking is this - I want a command which converts


 
 
  :MO0174
 
 
  :MO0928
 
 
  :MO0486
 
 
  :MO0074
 
 
  :MO0718
 
 
  :MO0355
 
 
  :MO0789
 

to this 
  :MO0174
  :MO0928
  :MO0486
  :MO0074
  :MO0718
  :MO0355
  :MO0789




Date: Tue, 14 Feb 2012 17:30:07 +0800
Subject: Re: [Veritas-bu] vmchange script
From: dream...@gmail.com
To: veritas-bu@mailman.eng.auburn.edu
CC: sharma.anu...@hotmail.com

Hi

Last time i use this to generate a file with colon separated media labels:

@bpimagelist -A -media -idonly -hoursago 24 | find MO | tr \r\n : | sed -e 
s/::/:/g -e s/:$//g  %MEDIA_FILE%


Hope it help.

Leo

On Sun, Feb 12, 2012 at 10:35 PM, Justin Piszcz jpis...@lucidpixels.com wrote:

Hi,
 That would be just the media label— one command per TAPE.
 vmchange .. etc etc .. –ml TAPE01
vmchange .. etc etc .. –ml TAPE02vmchange .. etc etc .. –ml TAPE03
 Justin.
 
From: Anurag Sharma [mailto:sharma.anu...@hotmail.com] 

Sent: Sunday, February 12, 2012 8:59 AM
To: jpis...@lucidpixels.com; veritas-bu
Subject: RE: [Veritas-bu] vmchange script
 

Justin,

$Tape


What would that file contain

just the media labels 

or 

media labels which are colon seperated. if yes kind send how this script would 
look in windows nbu



From: jpis...@lucidpixels.com
To: sharma.anu...@hotmail.com; veritas-bu@mailman.eng.auburn.edu

Subject: RE: [Veritas-bu] vmchange script
Date: Sun, 12 Feb 2012 08:27:39 -0500Hi,
 
There is a better way.
There is an undocumented option called –single_cycle.
This will put the tapes in the cap one by one and not prompt you to remove them.
The best of both worlds J
 
Example Syntax:
/usr/openv/volmgr/bin/vmchange -h $MASTER_SERVER -rh $ROBOT_CTRL_HOST -rn 
$ROBOT_NUM -rt $ROBOT_TYPE -multi_eject -map any -res -ml $TAPE -verbose 
-single_cycle
 
Justin.
 
From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Anurag Sharma

Sent: Sunday, February 12, 2012 7:40 AM
To: veritas-bu
Subject: [Veritas-bu] vmchange script 
Hi Team,

Here's is my challenge.

Every week I have to change tapes in two libraries one has a cap size of 25 and 
another has of 35.


Now I get a list of tapes to be ejected and sent offsite via script the real 
challenge is ejecting them.

I can use the vmchange command in two separate consoles

Syntax : vmchange -res -multi_eject -w -rn 0 -rt tld -rh pnors950.mgroupnet.com 
-ml  


Example :vmchange -res -multi_eject -w -rn 0 -rt tld -rh server.xyz.com -ml 
MO0371:MO0012:MO0454:MO0775:MO0017


I want to create a script which automates this one of the sample script is 


FOR /F %%i IN (E:\\setin.txt) DO E:\VERITAS\Volmgr\bin\vmchange -res 
-multi_eject -w -rn 3 -rt tld -rh pnors954.mgroupnet.com -ml 
%%iE:\\ejectoutput.txt


The above script uses a file setin.txt which would have list of labels with 
colon separated 

MO0371:MO0012:MO0454:MO0775:MO0017

The only challenge is this I want the script to take input of labels as file 
and do not want manually colon separate them manually.



Please provide suggestions.

Anurag 



 


___

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] Help with this

2012-02-17 Thread Anurag Sharma

If you have nbu 7.x go for opscenter and configure daily failed report along 
with email alerts. Easy way

otherwise BLAT with some pearl scripts is the way to go

From: wil...@ge.com
To: layne.barber@csd.disa.mil; VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Date: Fri, 17 Feb 2012 18:12:40 +
Subject: Re: [Veritas-bu] Help with this











Layne,
  I use the following:
 
D:\PROGRAM FILES\VERITAS\NetBackup\bin\admincmd\bperror -U -tape -backstat 
-by_statcode -hoursago 24  d:\errors\backup_failures_statcodes.txt
blat d:\errors\backup_failures_statcodes.txt -subject My site backup failures 
by Status (Tape) -to THIS WILL BE AN EMAIL ADDRESS
 
This uses blat to email whoever you want.  You can adjust the time by 
increasing or decreasing the number 24. 

 
 
 


From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu]
On Behalf Of Barber, Layne Mr CTR DISA CDM612

Sent: Friday, February 17, 2012 1:01 PM

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

Subject: [Veritas-bu] Help with this


 
Our manager would like to see what our overall success/failure rate is for full 
backups that occur over the weekend. What would you recommend? I would need 
this to be a repeatable process that could be automated in the future. I have
 no idea how to accomplish this, anyone doing something similar?
 
Thanks,
 
Layne 
 




___
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] vmchange script

2012-02-12 Thread Anurag Sharma

Hi Team,

Here's is my challenge.

Every week I have to change tapes in two libraries one has a cap size of 25 and 
another has of 35.

Now I get a list of tapes to be ejected and sent offsite via script the real 
challenge is ejecting them.

I can use the vmchange command in two separate consoles

Syntax : vmchange -res -multi_eject -w -rn 0 -rt tld -rh pnors950.mgroupnet.com 
-ml  

Example :vmchange -res -multi_eject -w -rn 0 -rt tld -rh server.xyz.com -ml 
MO0371:MO0012:MO0454:MO0775:MO0017


I want to create a script which automates this one of the sample script is 

FOR /F %%i IN (E:\\setin.txt) DO E:\VERITAS\Volmgr\bin\vmchange -res 
-multi_eject -w -rn 3 -rt tld -rh pnors954.mgroupnet.com -ml 
%%iE:\\ejectoutput.txt

The above script uses a file setin.txt which would have list of labels with 
colon separated 

MO0371:MO0012:MO0454:MO0775:MO0017

The only challenge is this I want the script to take input of labels as file 
and do not want manually colon separate them manually.


Please provide suggestions.

Anurag 



 



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


Re: [Veritas-bu] vmchange script

2012-02-12 Thread Anurag Sharma


Justin,

$Tape


What would that file contain

just the media labels 

or 

media labels which are colon seperated. if yes kind send how this script would 
look in windows nbu


From: jpis...@lucidpixels.com
To: sharma.anu...@hotmail.com; veritas-bu@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] vmchange script
Date: Sun, 12 Feb 2012 08:27:39 -0500



Hi, There is a better way.There is an undocumented option called 
–single_cycle.This will put the tapes in the cap one by one and not prompt you 
to remove them.The best of both worlds J Example 
Syntax:/usr/openv/volmgr/bin/vmchange -h $MASTER_SERVER -rh 
$ROBOT_CTRL_HOST -rn $ROBOT_NUM -rt $ROBOT_TYPE -multi_eject -map any 
-res -ml $TAPE -verbose -single_cycle Justin. From: 
veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Anurag Sharma
Sent: Sunday, February 12, 2012 7:40 AM
To: veritas-bu
Subject: [Veritas-bu] vmchange script Hi Team,

Here's is my challenge.

Every week I have to change tapes in two libraries one has a cap size of 25 and 
another has of 35.

Now I get a list of tapes to be ejected and sent offsite via script the real 
challenge is ejecting them.

I can use the vmchange command in two separate consoles

Syntax : vmchange -res -multi_eject -w -rn 0 -rt tld -rh pnors950.mgroupnet.com 
-ml  

Example :vmchange -res -multi_eject -w -rn 0 -rt tld -rh server.xyz.com -ml 
MO0371:MO0012:MO0454:MO0775:MO0017


I want to create a script which automates this one of the sample script is 

FOR /F %%i IN (E:\\setin.txt) DO E:\VERITAS\Volmgr\bin\vmchange -res 
-multi_eject -w -rn 3 -rt tld -rh pnors954.mgroupnet.com -ml 
%%iE:\\ejectoutput.txt

The above script uses a file setin.txt which would have list of labels with 
colon separated 

MO0371:MO0012:MO0454:MO0775:MO0017

The only challenge is this I want the script to take input of labels as file 
and do not want manually colon separate them manually.


Please provide suggestions.

Anurag 



 


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


[Veritas-bu] NBU VStorage Backup on Datadomain

2012-01-30 Thread Anurag Sharma

Hi Team,

We are  going for Netbackup Vmware Backups to backup Virtual Machines.

The target storage device is Data domain.

If anyone has implemented the same with please share the best practices.

Another doubt we have is this .

The transport method should be SAN or NBD.

The san method is useful if we were to use san connected tape libraries and 
data transfer would have happen over san. 

But in our case even if we zone all the datastore LUNS with automount disable 
and automount scrub its of no use and data from  the media server to Datadomain 
always goes via LAN so why to use SAN method.


Kindly give your inputs please ..

Regards
Anurag Sharma


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


[Veritas-bu] Symantec Opscenter Integration with SCOM

2012-01-12 Thread Anurag Sharma

Hi Team,

We are trying to automate alert monitoring of Netbackup from current SMTP 
emails to automated SNMP traps using opscenter and SCOM

Has anyone implemented that or anything like that ?

The ticketing tool we are looking forward to use is Remedy.

If anyone has done Netbackup integration with SCOM and/or Remedy using 
SMTP/SNMP for auto ticket generation please share the best practices.


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


Re: [Veritas-bu] NDMP Backups on DataDomain.

2012-01-05 Thread Anurag Sharma


Thank You David/Brayan E/Greg/rsavage,

Thanks for you feedback,

I'm back with my results.

We will be backing up NDMP data using remote ndmp to a datadomain ost 

I compared and found out I'm getting 300GB backed up in 1 hour at the rate 
75000 KB/sec which is much better than local ndmp where we were getting  more 
13mb/sec.

Few important points to be considered 

When backing up to the DD device make sure you explicitly set  maximum 
concurrent jobs not more then 150/- (MAX is 180)

While adding the ndmp host to netbackup 7.1 try using command prompt instead of 
GUI for some reason it was not working with GUI in my case 


Best regards
Anurag 



Date: Tue, 3 Jan 2012 18:53:36 -0600
From: da...@stanaway.net
To: veritas-bu@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] NDMP Backups on DataDomain.


  



  
  
You can do NDMP backups to OST via LAN transport to the media
server. All you need to do is setup your ndmp credentials in NBU and
on your NAS device. At least this worked for me with a VNX-File NDMP
backup.



If you want to transport NDMP backups via SAN to the DATADOMAIN,
then you would need the VTL license/HBA on the datadomain.





On 1/3/2012 2:28 PM, Anurag Sharma wrote:

  
  
Hi Team,



I have been given this task to move the NDMP backups from one
master server to another.



The current master server backups up NDMP to CDL (Clariion Disk
Libraries) typical environment via SAN.



 Now the new master server has no TL/VTL/CDL its just has
Datadomain used as netbackup openstorage device.





Now my question is this .



Do I have to procure VTL license from DATADOMAIN in order to do
NDMP backups ?



If I do NDMP backups to Datadomain open storage device will it
have any performance implications ?



Another point that crossed my mind is this : openstorage backups
would be via LAN not via SAN would that reduce the speed of ndmp
backups to great levels ?





Anyone who has implement Netbackup NDMP backups on Datadomain
please provide me with their valueable inputs.



Regards

Anurag 

  
  

  
  

  ___
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


[Veritas-bu] NDMP Backups on DataDomain.

2012-01-03 Thread Anurag Sharma

Hi Team,

I have been given this task to move the NDMP backups from one master server to 
another.

The current master server backups up NDMP to CDL (Clariion Disk Libraries) 
typical environment via SAN.

 Now the new master server has no TL/VTL/CDL its just has Datadomain used as 
netbackup openstorage device.


Now my question is this .

Do I have to procure VTL license from DATADOMAIN in order to do NDMP backups ?

If I do NDMP backups to Datadomain open storage device will it have any 
performance implications ?

Another point that crossed my mind is this : openstorage backups would be via 
LAN not via SAN would that reduce the speed of ndmp backups to great levels ?


Anyone who has implement Netbackup NDMP backups on Datadomain please provide me 
with their valueable inputs.

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


Re: [Veritas-bu] FW: BLAT statement would not send e-mails for status 1

2011-12-25 Thread Anurag Sharma

Thank You Smpt/Abhishek/Linda,

Thanks for pouring in great ideas.!!

I however got my way around nbmail finally. 

We just need to add following above the If statement in the nbmail script.

--
FINDSTR /C:was partially successful %3
IF {%errorlevel%}=={0} goto :EOF
---

Regards
Anurag 
From: sm...@peppas.gr
To: abhishek.dhin...@in.ibm.com; sharma.anu...@hotmail.com
CC: veritas-bu@mailman.eng.auburn.edu; veritas-bu-boun...@mailman.eng.auburn.edu
Subject: RE: [Veritas-bu] FW: BLAT statement would not send e-mails for status 1
Date: Fri, 23 Dec 2011 15:58:41 +0200



You can do the same with nbmail. Just find the correct parameter. Maybe it is 
not %5 at nbmail.bat You can always install and use opscenter   From: 
veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of Abhishek 
Dhingra1
Sent: Friday, December 23, 2011 10:44 AM
To: Anurag Sharma
Cc: veritas-bu; veritas-bu-boun...@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] FW: BLAT statement would not send e-mails for status 
1 Hi ANurag, 

I am not aware of BLAT, but you can do the same using the 
backup_exit_notify script. 

Script exists in the /usr/openv/netbackup/bin path. put the if condition . 
below is the example condition from my environment. 

if [ $5 != 0 ] 
then 

 if [ $5 == 1 ] 
   then 
 echo BACKUP COMPLETED WITH STATUS PARTIALLY SUCCESSFUL ON `hostname` FOR 
CLIENT $1 | mail -r partial_bac...@cndabckpotzp01.airtel.in -s BACKUP 
COMPLETED WITH STATUS PARTIALLY SUCCESSFUL ON `hostname` FOR CLIENT $1 
usern...@company.com 
  else 
 cat $OUTF | mail -r failed_bac...@cndabckpotzp01.airtel.in -s BACKUP FAILED 
ON `hostname` FOR CLIENT $1 WITH ERROR CODE $5 usern...@company.com 
 fi 

fi 

Rgds
Abhishek Dhingra
OLM ID : A1384552
Email : abhishek.dhin...@in.ibm.com 

Anurag Sharma sharma.anu...@hotmail.com 
Sent by: veritas-bu-boun...@mailman.eng.auburn.edu 12/23/2011 01:56 PM 
Toveritas-bu veritas-bu@mailman.eng.auburn.edu ccSubject[Veritas-bu] FW: BLAT 
statement would not send e-mails for status 1 


Guys,

Please help.!!!

Anurag From: sharma.anu...@hotmail.com
To: veritas-bu@mailman.eng.auburn.edu; sharma.anu...@hotmail.com
Subject: BLAT statement would not send e-mails for status 1
Date: Fri, 23 Dec 2011 06:03:30 +0530

Hi All,

I have successfully configured BLAT with nbmail. This is has led to lot of 
email for the jobs completing with status code1.

Is there anyway to configure BLAT in such a manner so that it would not send 
email for status 1 partially successful backups.

Anurag 
___
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] FW: BLAT statement would not send e-mails for status 1

2011-12-23 Thread Anurag Sharma

Guys,

Please help.!!!

Anurag 

From: sharma.anu...@hotmail.com
To: veritas-bu@mailman.eng.auburn.edu; sharma.anu...@hotmail.com
Subject: BLAT statement would not send e-mails for status 1
Date: Fri, 23 Dec 2011 06:03:30 +0530







Hi All,

I have successfully configured BLAT with nbmail. This is has led to lot of 
email for the jobs completing with status code1.

Is there anyway to configure BLAT in such a manner so that it would not send 
email for status 1 partially successful backups.

Anurag 


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


[Veritas-bu] BLAT statement would not send e-mails for status 1

2011-12-22 Thread Anurag Sharma

Hi All,

I have successfully configured BLAT with nbmail. This is has led to lot of 
email for the jobs completing with status code1.

Is there anyway to configure BLAT in such a manner so that it would not send 
email for status 1 partially successful backups.

Anurag 

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


Re: [Veritas-bu] NetBackup (Virtualized Master Media Servers)

2011-12-15 Thread Anurag Sharma


Guys,

Best would be created a cluster active passive for NBU MASTER

Keep your physical machine as passive so that it can take over in worst case 
scenarios.

Anurag
From: rusty.ma...@sungard.com
Date: Thu, 15 Dec 2011 23:35:12 -0600
To: brian_tho...@playstation.sony.com; VERITAS-BU@mailman.eng.auburn.edu
Subject: Re: [Veritas-bu] NetBackup (Virtualized Master  Media Servers)



Hey Brian,
 We have a customer that has virtualized 10 media servers and haven’t seen any 
issues with performance. The master is a physical server.
Two things I can immediately think of: Resource contention of the VMs and any 
features that move the VMs around to optimize resources (VMware does this with 
Distributed Resource Scheduler [DRS]).
 Unless it’s a pretty small domain, and there isn’t a need to virtualize, I 
would opt for physical servers. Maybe I’m just a traditionalist.
 -Rusty
 From: veritas-bu-boun...@mailman.eng.auburn.edu 
[mailto:veritas-bu-boun...@mailman.eng.auburn.edu] On Behalf Of 
brian_tho...@playstation.sony.com

Sent: Thursday, December 15, 2011 5:38 PM
To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
Subject: [Veritas-bu] NetBackup (Virtualized Master  Media Servers)
 I work for Sony Playstation and we are moving a racked stand-alone Master  
Media server configuration to a new data center. 

I am on version 7.1 and am considering virtualizing the entire infrastructure.  
Has anyone successfully done this yet and did you run into any gotchas? 


Regards 

Brian



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


Re: [Veritas-bu] VMware5 and NetBackup 7.0

2011-12-06 Thread Anurag Sharma

Simon,

Netbackup would add the support of Vcenter 5 soon.

Howerver for ESX 5 we would have to wait for netbackup 7.5

We were also about to go Netbackup VMware agent based backups however had to 
drop it at last due to compatibility concerns.

Anurag 

Date: Tue, 6 Dec 2011 06:24:43 +
From: simon.wea...@astrium.eads.net
To: veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] VMware5 and NetBackup 7.0








VMware5 and NetBackup 7.0 




Morning


I wanted to see if anyone can shed some light on this question, because I am 
not able to find the official answer.


VMware announced several months ago about vmware5. However, reading on some 
Symantec Blog sites, they talk about VMware5 being supported in NetBackup 7.5.

Well, we are at 7.0.1 and I was kind of hoping that NetBackup and VMware5 would 
work in harmony.


It is a little puzzling, because another product called VEEAM supports VMware 5 
already. Should I really have to change to a different product to get support?

If anyone either from Symantec, or anyone that has deployed VMware 5 can 
advise, this would be apprecaited, as I think its a bit foolish to upgrade to 
the later product if your backup solution doesnt meet the support requirements.

Thank you for your help and any input :-)


Regards


Simon Weaver 




___
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] VMware5 and NetBackup 7.0

2011-12-06 Thread Anurag Sharma

Hi Simon,

Yes its beta 1 and beta 2 would come around august. So forget about full 
release until at least next 6 months.

Anurag 

Subject: RE: [Veritas-bu] VMware5 and NetBackup 7.0
Date: Tue, 6 Dec 2011 08:48:48 +
From: simon.wea...@astrium.eads.net
To: sharma.anu...@hotmail.com; veritas-bu@mailman.eng.auburn.edu




VMware5 and NetBackup 7.0





Hi anurag
Thank you. We are going ESX5, so I had hoped that 7.0 or at least 7.1 
would support it.
As I understand, 7.5 is in BETA still right ?
Simon



From: Anurag Sharma [mailto:sharma.anu...@hotmail.com] 

Sent: 06 December 2011 08:00
To: WEAVER, Simon (external); 
veritas-bu
Subject: RE: [Veritas-bu] VMware5 and NetBackup 
7.0



Simon,

Netbackup would add the support of Vcenter 5 
soon.

Howerver for ESX 5 we would have to wait for netbackup 
7.5

We were also about to go Netbackup VMware agent based backups however 
had to drop it at last due to compatibility concerns.

Anurag 




Date: Tue, 6 Dec 2011 06:24:43 +
From: 
simon.wea...@astrium.eads.net
To: 
veritas-bu@mailman.eng.auburn.edu
Subject: [Veritas-bu] VMware5 and NetBackup 
7.0


Morning 
I wanted to see if 
anyone can shed some light on this question, because I am not able to find the 
official answer. 
VMware announced 
several months ago about vmware5. However, reading on some Symantec Blog 
sites, they talk about VMware5 being supported in NetBackup 7.5.
Well, we are at 7.0.1 and I was kind of hoping that 
NetBackup and VMware5 would work in harmony. 
It is a little puzzling, because another product called VEEAM 
supports VMware 5 already. Should I really have to change to a different 
product 
to get support?
If anyone either from 
Symantec, or anyone that has deployed VMware 5 can advise, this would be 
apprecaited, as I think its a bit foolish to upgrade to the later product if 
your backup solution doesnt meet the support requirements.
Thank you for your help and any input :-) 

Regards 
Simon Weaver 


___ 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


Re: [Veritas-bu] Installation of ICS failed

2011-10-01 Thread Anurag Sharma

Hi,
I have done the setup of same thing in my laptop.
Following 2 things are required at hardware level.
1. CPU needs to be x64 bit you can check it at ark.intel.com 
2: Intel VT needs to be enabled in BIOS
I have windows 7 x86 (32) bit and installed vmware workstation 32 bit but still 
netbackup for solaris x86 requires above mentioned things.
RegardsAnurag Sharma
 Date: Fri, 30 Sep 2011 17:27:58 -0700
 From: dphil...@parc.com
 To: VERITAS-BU@MAILMAN.ENG.AUBURN.EDU
 Subject: Re: [Veritas-bu] Installation of ICS failed
 
 Don't you want
 
 NB_65_ICS_1.4.37.0_SolarisX86 ?
 
 rahul wrote:
  Hi,
  
  I've installed a x86-64 Solaris VM machine. And when i'm trying to install 
  the ICS Software it is giving me the below mentioned error.
  
  
  #./installics
  ./installics: ./perl/bin/perl: cannot execute
  ./installics: ./perl/bin/perl: cannot execute
  ./installics: ./perl/bin/perl: cannot execute
  
  And the software which i'm using is NB_65_ICS_1.4.37.0_Solaris
  
 ___
 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] Unable to browse NBU Directories

2011-09-06 Thread Anurag Sharma

Hi All,
 
I'm new to Netbackup and Solaris. 
 
I have set up a test enviorment Solaris X86 and NBU 6.5 
 
I logged in as root and sucessfully installed NBU. If I go through the GUI of 
solaris and lauch jnbSA it works fine. However
 
If I open terminal and try to go to nbu directories like /usr/openv/ or 
/usr/openv/volmgr I get a message directory does not exist, same happens with 
/opt/openv/
 
I need to be a able to run commands as I know netbackup some commands like bpps 
bpimagelist vmoprcmd -reset cant be run from GUI.
 
Again I'm new so please pardon me for my mistakes.
 
Regards
Anurag Sharma
(On Voyage to Master NBU and Solaris) ___
Veritas-bu maillist  -  Veritas-bu@mailman.eng.auburn.edu
http://mailman.eng.auburn.edu/mailman/listinfo/veritas-bu


Re: [Veritas-bu] exclude_list - exclude core file but not core directory

2011-08-28 Thread Anurag Sharma

Dave,
 
To exclude all files with a given name, regardless of their directory path, 
just enter the name without a preceding slash. For example: example rather 
than /example 
 
Here is an example *exclude_list* 
 
 
---
 
 
 
# this is a comment line
/tmp/example/dir/all
/tmp/example/dir2only/
/usr/home/*/all_tmp
/*/all_temp
core
 
--
 
Anurag 
 

 Date: Sun, 28 Aug 2011 19:31:28 -0500
 From: da...@graniteweb.com
 To: veritas-bu@mailman.eng.auburn.edu
 Subject: [Veritas-bu] exclude_list - exclude core file but not core directory
 
 Hello,
 
 I'm dealing with exclude_list for the umteenth time, and stumbled into a
 classic problem.
 
 The examples in the docs have always shown excluding core, which
 excludes all core files AND core directories. Because of how you define
 things, it is possible to exclude just directories by appending / (e.g.,
 core/), but there is no corresponding way that I can find to exclude
 ONLY files named core.
 
 I can more or less accomplish what I need to by using an include_list
 that contains core/, but this will obviously add processing overhead
 because it's going to build the initial list, drop excluded stuff, then
 go back through all the excluded directories and look for all
 directories named core. I especially don't want the include list to
 go back and re-add any core directories under other directories that I
 have also excluded.
 
 For example:
 exclude_list:
 core
 /dev
 /sys
 /mnt/auto
 /var/mqm/
 /u[0-9]*/
 
 If I have an include_list that looks like this:
 core/
 
 It will pick up any directories named core under:
 /dev
 /sys
 /mnt/auto
 /var/mqm/
 /u[0-9]*/
 
 Which I do NOT want it to do.
 
 
 Does anyone know if it's possible to define JUST files named core in the
 exclude_list, so that an include_list is not necessary? If an
 include_list is the only way to do it, is it possible to avoid the
 re-adding under the directories I _do_ want to exclude?
 
 Thanks.
 
 -- 
 David Rock
 dave...@graniteweb.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