Video Screencast Help
Search Video Help Close Back
to help
New in the Rewards Catalog: Vouchers for "Symantec Technical Specialist" and "Symantec Certified Specialist" exams.

NetBackup recycler

Updated: 21 May 2010 | 5 comments
seanbrittus's picture
0 0 Votes
Login to vote
This issue has been solved. See solution.

I am trying to generate a process script to recycle (start or stop) the Netbackup services, but it is failing for some reason. Can anyone identify the problem?

@echo off
net %1 VxENE
net %1 Veritas GDM Information server
net %1 NetBackup Client Service
net %1 NetBackup Database Manager
net %1 NetBackup Device Manager
net %1 nbdbd
net %1 NetBackup Request Manager
net %1 NetBackup Volume Manager

discussion Filed Under:

Comments

Nicolai's picture
17
May
2009
3 Votes +3
Login to vote

What about bpup and bpdown

Why not use bpup and bpdown instead ?.  These two command are documented in the "Veritas Netbackup commands".

Regards

Nicolai

Assumption is the mother of all mess ups.

If this post solved you’re questions please send a gratitude by marking it as a solution.

 

basker's picture
18
May
2009
0 Votes 0
Login to vote

.

.

Shashank's picture
19
May
2009
0 Votes 0
Login to vote

Try bpup -f -v & bpdown -f -v

Try bpup -f -v & bpdown -f -v it will show u the all netbackup services detail

Shashank's picture
19
May
2009
0 Votes 0
Login to vote

Try bpup -f -v & bpdown -f -v

Try bpup -f -v & bpdown -f -v it will show u the all netbackup services detail

erin4fry's picture
24
May
2009
0 Votes 0
Login to vote

Try this (you need to enclose

Try this (you need to enclose the services in quotes)
Or you can get the actual service name(s) - which usually don't have spaces in them...

@echo off
set action=%1
net %action% VXEne
net %action% "Veritas GDM Information Server"
net %action% "NetBackup Client Service"
net %action% "NetBackup Database Manager"
net %action% "NetBackup Device Manager"
net %action% nbdbd
net %action% "NetBackup Request Manager"
net %action% "NetBackup Volume Manager"