veritas NETbackup command


 
Thread Tools Search this Thread
Operating Systems Solaris veritas NETbackup command
# 1  
Old 05-04-2005
veritas NETbackup command

i am using veritas admenistration console to control all backup operations of our servers .
we use SUN LT25 LTO library connected to a backupserver running solaris 8 .
i was wondering if there is a command that i can use from solaris so that i can activate and deactivate some policeis , rather than to always use the GUI .

regards
cheers
# 2  
Old 05-04-2005
there are more than a few Netbackup commands that you can use on the command line to do whatever you need or for your scripting needs ... check the Netbackup manuals ...
# 3  
Old 05-04-2005
i went through the Document that comes with veritas, i found loads and loads of command ,but this specific command i wasnt able to find .
i.e. enable and disable policeis .
anybody any ideas
cheers
# 4  
Old 05-04-2005
USAGE: bpplinfo policy_name -L|-l|-U [-v] [-M master_server,...]
bpplinfo policy_name -set|-modify [-v] [-M master_server,...]
[-active | -inactive] [-pt policy_type]
[-ut] [-ef effective_time]
[-residence label]
[-pool label]
[-priority priority]
[-rfile flag] [-blkincr flag]
[-multiple_streams flag] [-keyword "keyword phrase"]
[-encrypt flag]
[-collect_tir_info value] [-compress flag]
[-crossmp flag] [-disaster flag] [-follownfs flag]
[-policyjobs max_jobs(0=unlimited)]

Valid values for policy_type:
Standard Apollo-wbak Oracle Informix-On-BAR
Sybase Macintosh NetWare DataTools-SQL-BackTrack
MS-Windows-NT OS/2 MS-SQL-Server MS-Exchange-Server
SAP DB2 NDMP FlashBackup Split-Mirror
AFS DataStore Lotus-Notes NCR-Teradata
Vault
# 5  
Old 11-16-2008
You can also suspend and resume scheduling jobs with the following:
nbpemreq –suspend_scheduling
nbpemreq -resume_scheduling

I deactivate and activate the policies via cron

# crontab -l | grep -i activate

0 5 * * 1-5 /usr/local/scripts/policy-deactivate.sh
0 14 * * 1-5 /usr/local/scripts/policy-activate.sh

# cat /usr/local/scripts/policy-deactivate.sh
#! /bin/sh
for i in `/usr/bin/cat /usr/local/scripts/policylist`
do
/usr/openv/netbackup/bin/admincmd/bpplinfo $i -modify -inactive
done

# cat /usr/local/scripts/policy-activate.sh
#! /bin/sh
for i in `/usr/bin/cat /usr/local/scripts/policylist`
do
/usr/openv/netbackup/bin/admincmd/bpplinfo $i -modify -active
done
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to extend a disk in veritas volume manager in veritas cluster?

Hi Experts, I wanted to extend a veritas file system which is running on veritas cluster and mounted on node2 system. #hastatus -sum -- System State Frozen A node1 running 0 A node2 running 0 -- Group State -- Group System Probed ... (1 Reply)
Discussion started by: Skmanojkum
1 Replies

2. Solaris

Veritas Netbackup Trial Version

Hi all, Good day to all. Anyone here who recently tried to download a trial version for Veritas Netbackup for Sun Solaris System? The reason for asking is that, I need to download a trial version for testing purposes. I tried to look at the Symantec website but unfortunately, it is not... (0 Replies)
Discussion started by: graboid888
0 Replies

3. Solaris

veritas netbackup

Hi All, We are currently running Veritas netbackup. We are currently having a few issues where were unable to log in due to several errors. Out usual fix for this is to recycle the backup servers however due to the nature of the information being backed up this is done by someone else and... (1 Reply)
Discussion started by: rickyclayton201
1 Replies

4. UNIX for Dummies Questions & Answers

Veritas Netbackup Agent Running

I was facing problems in taking backup of a windows server for quiet a long time.i have again reinstall the client software to get rid of this. my question : how to check the agent (netbackup) is running on client side or not?? how to check???? bcoz reinstalltion is not a good solution .:( (6 Replies)
Discussion started by: saurabh84g
6 Replies

5. UNIX for Advanced & Expert Users

Launch veritas netbackup

Hello - I already have Veritas netbackup installed on Mac OS. But I am not able to find the daemon name for running the backup. Does anyone know How to run netbackup? Thank you! (3 Replies)
Discussion started by: panchpan
3 Replies

6. Shell Programming and Scripting

Veritas Netbackup Restore Scripts

Hi all, I wanted to find out if any of the folks out there have any experience with Netbackup restore scripts. I wish to set up a basic restore script on a "pilot" server. The script will basically non interactively set up a date (this date will be the date for which the data we are restoring) and... (1 Reply)
Discussion started by: ppantazis
1 Replies

7. UNIX for Dummies Questions & Answers

Veritas NetBackup

Veritas NetBackup, how does it work?? I mean, I know it is used for backups and restores but really, can anybody give me a brief or any explanation that sums up basically what it is about besides the fact that it does backups and restores??? Please, if you have any information, I would appreciate... (2 Replies)
Discussion started by: TRUEST
2 Replies
Login or Register to Ask a Question