Recently I got an opportunity to configure a windows 2012 R2 server backup on an external NAS, We were trying to set up the backup on a Buffalo NAS and also tried WD Cloud EX4 NAS. In both the case we ran into different error, this article suggest how we worked around the error to get the backup going for the server.
We were trying to store the backup on a network location on both the NAS and we ran into following errors in both the cases
WD Cloud EX4 NAS: The backup process started but then immediately failed with the error “Incorrect Function” and “There was a failure in preparing the backups image of one of the volume”. I checked the WD forums for solution but found that a lot of people are facing same error with no solution. Refer to error screenshot below
The Buffalo NAS gave an error “ The Version does not support this version of the file format” when researched we found that it’s a known issue and needed NAS to be rooted which I wasn’t willing to do to customer’s NAS. See the discussion below, in this reference
http://forums.buffalotech.com/index.php?topic=10737.0
Anyways, now that we know that both the NAS have their own issue we decide to set up the backups using a different approach. We decided to use a ISCSI LUN to store the backups. Fortunately our WD NAS had the option to create a LUN. If you have any other NAS, you need to find out how to create a LUN on it.
Refer to following screenshot where we accessed the Admin URL of the WD Cloud EX4 NAS and created a LUN
Now we go back to our server and start the iSCSI initiator to connect this LUN as a hard drive on our server
search and start the iSCSI initiator on your server, iSCSI initiator is part of windows server since Windows Server 2008, on windows 2003 it needed to be downloaded and installed
Specify the IP of your NAS under the target IP and click quick connect, you should be able to see the name of the LUN’s available on your NAS, connect the one which you need.
PS: Depending on the NAS you are using and also security settings on the LUN, you may have to use the other tabs in following windows to get your LUN connected
Now once your LUN is connected, you need to open the Disk Management snap-in on the windows server (Diskmgmt.msc), to format the disk and assign it a drive letter.
PS: Windows server backup can also use this LUN without being initiated as a Drive in windows but that way you would not be able to see the content of the disk.
Now once your Drive is created, its time to get started with setting up the backup. We wanted to do backups on a specific schedule. Though its possible to configure backup from Windows Backup console and you can setup a schedule as well but the control isn’t too well. So we decided to do the backups using schedule tasks, so that we can clearly define the schedule for the backups.
The first thing we wanted to finalise was what all we need to backup and the WBadmin command line for windows backup is quite elobrate and extensive to set windows server backups, It clearly helps you define what to include in backup and the location where the backup is to be saved.
wbadmin enable backup [-addtarget:] [-removetarget:] [-schedule:] [-include: [-nonRecurseInclude:] [-exclude:] [-nonRecurseExclude:] [-allCritical] [-systemState] [-vssFull | -vssCopy] [-user:] [-password:] [-quiet]
We wanted to take a backup of following items on the server and wanted it to be target to our LUN, the M:\ which we created
1) Bare Metal Backup
2) C: , E:
3) System state
So we used the following command to set our backup
WBADMIN START BACKUP -backupTarget:M: -allCritical -systemstate -include:E: -quiet
The -allcritical switch took care of the BareMetal and C:\ backup and we just included SystemState and E:\
Also to create a schedule task for the same task we used the following command
SCHTASKS /Create /SC Monthly /MO FIRST /D FRI /TN Week1FullBackup /RL HIGHEST /ST 22:00 /TR “WBADMIN START BACKUP -backupTarget:M: -allCritical -systemstate -include:E: -quiet”
This article explains a simple approach towards setting up a windows server backup, if you need any further help or want to report another issue you need help with, feel free to start a new thread in our forum
Latest posts by Shishir Chandrawat (see all)
- Exchange 2010 Std: Mailbox server has reached the maximum database limit of 5 Error RcrExceedDbLimitException - December 12, 2016
- Exchange 2010: Unable to add Mailbox Database copies on DAG member servers, Error: An error occurred while processing a request on server - December 12, 2016
- Unable to Mount Microsoft Exchange DAG Database, Error: Failed to determine the mount status of the active database copy - December 12, 2016
Life saver mate. Just upgrade a NAS and my backups failed. This was the work around and the answer! Wxcellent.
Thanks Mark, Thumps up always boost our confidence. Appreciate you leaving a confirmation that the solution worked for you.