Forum Discussion

Sid1987's avatar
Sid1987
Level 6
12 years ago

BPJOBD process temporary workaround, for automation

Hi Guys,   I need some urgent help, I have an issue that bpjobd process gets killed every now and then, I opened a case with symantec which didn't help, they recommended to upgrade to 7.5 which is ...
  • mph999's avatar
    12 years ago

    OK, seems to work :

     

    #!/usr/bin/ksh
    /usr/openv/netbackup/bin/bpps -x |grep bpjobd >/dev/null 2>&1
    if [[ $(echo $?) -ne 0 ]] then
    nohup /usr/openv/netbackup/bin/bpjobd &
    fi
     
    Please give that a go and report back.
     
    Martin