Veeam backup CIFS static Data Archiving

By Style Sync
| Published on
3009990-file-archive-concept-the-folder-are-zipped

Have your static files and storage space reached a critical point? Is there a cheaper way to archive the data without paying a high price for an archive solution? Or, is there a free way to solve this challenge? Read on to see how you can use your backup tools to solve your archiving challenges?

We are living in an era of continuous data being generated and consumed at an incredible rate.

The management of this data explosion is a major concern for all IT managers looking for new ways to control it. One of the best strategies to meet the challenge of gaining control of your data is to archive the Static Data.

Static Data is historical data that is no longer going to be changed. That data that is not needed for the daily operation of the business; but is still important for accounting, compliance or archives.

As the backup administrator, you are responsible for the retention of, and providing ready access to, your static data; it is your historical records. You shouldn’t have to run backups on your static data every time you run a backup; it was the same yesterday, and will be again tomorrow. Historical data repositories can be huge, and you will find when shopping for an archiving solution that it can be very expensive.

In this post, I am going to show you a workaround, and show you how my company used Veeam Backup to archive our static data and reduced our storage footprint.

Our challenge

As a mining company, we run several Common Internet File System (CIFS) on Network Attached Storages (NASs). Each file share contains images, diagrams, maps, and so on. These files are generated by each project; they are big files and consume a lot of storage space.

Our company management was shopping around for a solution to archive these files, but quickly realised the challenges. The products cost lots of money, take up expensive resources, but more importantly, introduce additional layers of complexity. However, in spite of all these hurdles, one of our backup engineers came up with an innovative solution.

The solution

Our backup engineer suggested we use our Veeam backup solution to back up the historical files to Tape, Repository, Virtual Tape Library (VTL), etc… and then delete those files from the CIFS on the NASs.

His solution was tested and proven up to the job for our needs. The solution requires the following items:

  1. Linux VM to mount the CIFS Shares;
  2. A temporary VMDK file to host the Share files;
  3. Linux Unison;
  4. Pre and Post scripts; and
  5. the Veeam Backup and Replication product.

 Linux Server Preparation

The first step to the Linux Server Preparation is to download and install Ubuntu Linux Server, though any other Linux version can be used. After downloading and installing the Linux Server, follow the steps below to complete the configuration:

1.  Add a VMDK file (the size must be the same, or larger, than the CIFS share).

Screen Shot 2016-05-21 at 9.08.48 AM

2.  Attach the disk to the Linux server.

3.  Log in to the Linux shell

4.  Run “sudo fdisk -l.” to get the address of the disk.

Screen Shot 2016-05-21 at 9.15.28 AM.png

5.  Initialise the disk: /dev/sdc: “sudo  fdisk /dev/sdc”

Screen Shot 2016-05-21 at 9.19.58 AM.png

6.  To create the disk partition, press “n”, and then choose primary “p”, and then “1”; we need only one partition.

7.  Press “Enter”. When the initialization is complete, press “q” to exit.

Screen Shot 2016-05-21 at 9.22.35 AM.png

Format the New Disk

1.  Format the new disk we just created. Run:

sudo mkfs -t ext4 /dev/sdc

The /dev/sdc string is the address of the new disk we acquired from the first step.

Screen Shot 2016-05-21 at 9.28.24 AM.png

2.  Create a mount point:

sudo mkdir /mnt/newdisk

Screen Shot 2016-05-21 at 9.31.08 AM.png

3.  Automatic mount at boot:

vi /etc/fstab

4.  Add the following line:

/dev/sdc   /mnt/newdisk   ext4   defaults   0   2

Screen Shot 2016-05-21 at 9.42.53 AM.png

5.  Install the Unison File Synchronizer package by running:

apt-get -y install unison

6.  mount the CIFS share to Linux Server:

mount -t cifs -o username=USERNAME //Shareaddress/shares /mnt/share

Screen Shot 2016-05-21 at 10.04.19 AM.png

 Deployment

1.  After completing the above steps, we now have a new disk where we can host the files we want to archive, and we have a mount point for the CIFS share folder. Our intention is to use Unison to sync the shares to the temporary disk (newdisk), so that Veeam can backup, and then remove, the old files from the CIFS share to free up storage space.

2.  For this example under the CIFS folder, we have two group of files:

a.  one group with the time stamp of 10/12/2010; and

b.  the second group with the time step of 21/5/2016.

The Demonstration Run

The demonstration of our solution is as follows:

1.  Run Unison to synchronise the first group of files with the time stamp of 10/12/2010 to the new disk.

2.  Backup the newdisk with the files using Veeam.

3.  Delete the first group of files from the source storage (CIFS).

4.  Clean up

 The Steps

1.  Configure the unison sync to sync the shares from the CIFS to newdisk.

The configuration file is under root, <.unison> folder , filename “defaults.prf”, by typing:

sudo vi defaults.prf

Screen Shot 2016-05-21 at 10.52.23 AM.png

After the data synchronises to the “newdisk”, it is time to clean up the NEW files and keep any of those files we need to archive. In our example, keep the group files with the dates from 10/12/2010. To do this, you need to run the following commands.

2.  Set the historical date of the old files; the commands shown below will keep all the files older than 10/12/2010, and then delete any files newer than this date.

touch -t 1012101730 /tmp/test

find . -newer /tmp/test -delete

3.  Backup with Veeam

4.  Restore

Screen Shot 2016-05-21 at 2.24.37 PM

5.  Optional: Run Unison to clean up the source storage; keep only the new files on the CIFS:

find . ! -newer /tmp/test -delete

All Together

From the previous steps, you can see that it is easy to backup and clean up files using the time stamp of the files. Now lets script all the commands together and let Veeam run the job to archive the old files, and then delete them, while keeping the new files.

In this example, we will have two groups of files:

a.  Group A: old files 10/12/2010 17:30

b.  Group B: newer files 21/5/2016 14:49

The pre-script will sync the files from the CIFS share to the “newdisk”,

a.  Sync the CIFS with “newdisk”

b.  Clean up Group B filesc.

c.  Backup

The post-script, will:

Clean up Group A from CIFS after backup

1.  Let’s create the following scripts on the Linux server by starting the following command:

vi prescript

* The command :q saves and quits vi prescript.

unison

touch -t 1012101730 /tmp/oldfiles

cd /mnt/newdisk

find . -newer /tme/oldfiles -delete

exit 0

2.  The next step to create a post script is optional:

vi postscript

cd /mnt/cifs

find . ! -newer /tmp/oldfiles -delete

exit 0

3.  After the scripts are created, copy them to the Veeam backup server.

**Important note: Do not open these script with an MS Windows editor.

Veeam Job Creation

1.  Name the Job. In this example it is “FileArchivesJob”.

Screen Shot 2016-05-22 at 12.04.59 PM.png

2.  Choose the VM and the Exclusions:

Screen Shot 2016-05-22 at 12.05.26 PM.png

3.  In this procedure, we are going to backup only the “newdisk” vmdk file.

Screen Shot 2016-05-22 at 12.06.32 PM.png

4.  Add the scripts under the Application processing:

Screen Shot 2016-05-22 at 12.07.28 PM.png

5.  Provide a root username. In this example, it is veeambackup.

Screen Shot 2016-05-22 at 12.08.39 PM.png

Note: In the event you are having difficulty authenticating with the Linux server using the provided username and password, you can create a user for this exercise with the following commands:

sudo adduser veeambackup

sudo gpasswd -a veeambackup sudo

After those commands, modify the sudoers file with visudo to add the following lines

veeambackup !requiretty

veeambackup ALL=(ALL) NOPASSWD: ALL

veeambackup  ALL=(ALL) NOPASSWD: ALL

 

Conclusion

The above workaround allowed our mining company to reduce the size of our backup runs by archiving our old data to tape, disk and VTL.

In addition, the above workaround allowed us to backup our CIFS share in daily bases without needing to acquire additional software.

I hope our experience, and our workaround, will help you solve a similar challenge. Please don’t hesitate to provide your feedback. Share and contact me for more info.

** Important note: You MUST test all your scripts and workflows before you implement any of these workarounds on your production environment.  This is especially important when you are deploying the post script to delete the old files from the CIFS share.

What do you think?

What do you think?

0 Comments:
One Trackback:

[…] interesting article on data archiving using Veeam where the data is held on CIFS […]

Leave a Reply

Your email address will not be published. Required fields are marked *

Subscribe to Our Newsletter

Table of Contents

Related Insights