cancel
Showing results for 
Search instead for 
Did you mean: 

How to start/stop Net Backup services on master/media servers?

DDS
Level 3
Hi all,

This sounds silly! But still it will be great if somebody can tell me "how to start/stop netbackup services on master/media servers from commandline"

master/media servers - AIX 5.3
Net Backup 6.5.2

Thank you.
DDS
1 ACCEPTED SOLUTION

Accepted Solutions

Mouse
Moderator
Moderator
Partner    VIP    Accredited Certified
Very easy

Stop:
/usr/openv/netbackup/bin/goodies/netbackup stop

Start:
/usr/openv/netbackup/bin/goodies/netbackup start

View solution in original post

14 REPLIES 14

Mouse
Moderator
Moderator
Partner    VIP    Accredited Certified
Very easy

Stop:
/usr/openv/netbackup/bin/goodies/netbackup stop

Start:
/usr/openv/netbackup/bin/goodies/netbackup start

DDS
Level 3
Thank you.

And if I am to stop any particular service, how do I go for it?

Cheers,
DDS

Mouse
Moderator
Moderator
Partner    VIP    Accredited Certified
ps -ef | grep <service name>

kill <pid_of_the_service>

rj_nbu
Level 6
Employee Accredited Certified
Hi DDS,

On AIX, you can use these to start and stop netbackup services (For 6.0):

/etc/rc.veritas.aix stop
/etc/rc.veritas.aix start


For 6.5


/etc/rc.netbackup.aix stop
/etc/rc.netbackup.aix start


Basically the netbackup script found in /usr/openv/netbackup/bin/goodies has been copied to /etc/rc.netbackup.aix


Anonymous
Not applicable
On Unix master or media server you can issue the command:

# bpps -a

This shows you a list of processes split into NetBackup and Media Manager services.

The MM Services are primarily started via the ltid process.

To stop Media Manager processes issue the command:

# stopltid

Similarly
# vmoprcmd -stopltid
# vmoprcmd -startltid

Or to control it all via a text interface menu

# vmadm

Choose Special Actions (s)

And the options
i) Initiate Media Manager Volume Daemon
t) Terminate Media Manager Volume Daemon


You can stop the Backup request Daemon also via text menu
# bpadm
s) Special Actions

i) Initiate Request Daemon
t) Terminate Request Daemon


Confirm these paths are in your system PATH environment: for the above commands to work
/usr/openv/netbackup/bin/
/usr/openv/volmgr/bin/


However, once you become familiar with NetBackup you very rarely need to use the text menus.

Alex_Korovin
Level 4
I can't find stop programs for bp* processes, are they exist?

Anonymous
Not applicable
# /usr/openv/netbackup/bin/bp.kill_all

Recommend only use this to cleanup any processes not stopped gracefully with the commands mentioned above.

Header info:

# Script for terminating all NetBackup, Media Manager and client
# daemons and processes.
#
# Notes:
#    - Use bp.start_all to start all NetBackup, Media Manager and
#      client daemons.
#    - Script does not handle all processes on media servers.
#    - Graceful termination is attempted, but some processes may be
#      ungracefully killed.
#    - Script is mainly intended to stop all daemons when there is
#    - no activity, i.e. no backups/restores in progress.



Alex_Korovin
Level 4
Thanks!!

sumanreddy
Level 4
Certified
Hope this may help

run the command 

/usr/opnev/netbackup/bin/admincmd/bpdown -f -v    ----> to stop the netbackup services 
/usr/opnev/netbackup/bin/admincmd/bpup -f -v    ----> to start  the netbackup services 




 

CRZ
Level 6
Employee Accredited Certified

Do you really have those commands available?  They aren't on my system and I don't think I've ever seen them outside of Windows.

 

(I'm pretty sure the original poster already got their answer a few days ago and I'm disheartened to see people still tacking on replies.  Maybe if a solution had been marked, this discussion would have mercifully ended before the misinformation was posted?)

Shyam_Prasad
Level 4
Certified
Those commands are used in Windows only to stop and start NetBackup..

Thanks,
Jaya

nairdheeraj
Level 4
As adviced from Symantec from version 6.5

Use

/usr/openv/netbackup/bin/bp.kill_all  ---> To terminate existing/hung processes and stop netbackup services

/usr/openv/netbackup/bin/bp.start_all ---> To start Netbackup processess.

In case you still find processess running you can always use bpps -a and use the kill -9 <pid> to terminate them.

Claudio_Veronez
Level 6
Partner Accredited
/etc/init.d/netbackup  start
/etc/init.d/netbackup stop

Just that...


Will_Restore
Level 6
is there's so many to choose from!