cancel
Showing results for 
Search instead for 
Did you mean: 

Auto Online for storage

HPLD
Level 2

When the BES detects a storage device go offline, it marks it as such. When the device comes back online, it stays offline until someone manually logs in and switches it to online. How can I make it so that the storage locations auto online when they become available again? A minor network hiccup can kill all of my weekly full backups which run on the weekend.

5 REPLIES 5

CraigV
Moderator
Moderator
Partner    VIP    Accredited
Hi, Only way I can think of is to run a script that restarts the BE services...no other way to do this through BE itself! Thanks!

pkh
Moderator
Moderator
   VIP    Certified

A minor network hiccup can kill all of my weekly full backups which run on the weekend.

Is your storage on a NAS or some remote device/server?  If this is the case, then BE does not get notified when it is back online, thus the status is not updated.

Other than restarting the BE services, you can schedule a inventory of the device before your job starts.

VJware
Level 6
Employee Accredited Certified

In addition to the above comments, here is another alternative.

Create a batch file with the following content ~

CD\
powershell.exe -command "&{import-module bemcli;Get-BEDiskStorageDevice  | Set-BEDiskStorageDevice -Disabled $false}"

Add a Windows Scheduler task to run this batch file before the backup starts.

HPLD
Level 2

I have a dozen servers that backup over the weekend. I don't know exactly when one will end so the next will start so scheduling a task is not a solution.

Colin_Weaver
Moderator
Moderator
Employee Accredited Certified

As pkh has kind of already stated - BE relies on an insert notification status with devices such as USB disks (when locally attached to the media server) that trigger BE into bringing the device online. Remote devices that go offline do not have this trigger mechanism so you have to manually force BE to bring the device back online.

 

You could get clever with an extension to what VJware posted and have something that finds out if a device is online or offline and then only try to bring the device back online if it is offline. Then schedule this to repeat periodically during the period where you backups might need thee device.