2

My company has a VMWare server. We run 6-8 virtual machine. I would like to perform daily backup them in a storage server.

How to do this with VMWare? Is there some "component" I don't know ? Or simply, I need to 'physical' copy vmdk files with a simple Bash script ?

stighy
  • 931
  • 8
  • 21
  • 32
  • 1
    Voted to migrate to ServerFault. Maybe check out http://superuser.com/questions/43690/vmware-workstation-auto-backup-clone and http://superuser.com/questions/102080/backing-up-vmware-fusion-virtual-machines for some ideas – techie007 Nov 17 '11 at 15:14
  • 1
    Another VMWAre Backup solution that I wrote in python if anyone is interested http://github.com/Barmaley13/VMWare-Backup I've tested it only on Linux, it might work on Windows and/or Mac but I'm pretty sure code would need to be modified for those platforms. – Barmaley Jan 12 '15 at 20:09
  • Also, Mr. @Paul maybe you should write your own piece of software before deleting another people's answers. I would say that would make you far better moderator... – Barmaley Feb 05 '15 at 17:37

4 Answers4

2

It's not a simple bash script by any stretch of the imagination but I've used this excellent script written by Iamw before and it's worked like a charm. We had a 2GB Netgear NAS attached to the network and added as an NFS Datastore:

http://communities.vmware.com/docs/DOC-8760

This script performs backups of virtual machines residing on ESX(i) 3.5/4.x+/5.x servers using methodology similar to VMware's VCB tool. The script takes snapshots of live running virtual machines, backs up the master VMDK(s) and then upon completion, deletes the snapshot until the next backup. The only caveat is that it utilizes resources available to the Service Console of the ESX server or Busybox Console (Tech Support Mode) of the ESXi server running the backups as opposed to following the traditional method of offloading virtual machine backups through a VCB proxy.

Moif Murphy
  • 254
  • 1
  • 3
  • 10
2

You can use a variety of software, provided by VMWare to do this. One of them best (IMO) is VMWare Consolidated Backup, altough it can only do file-level backup from Windows-machines. You can schedule it to run every x time.

Read more about it here (Page 30). It's for ESX(i) 3, but it hasn't changed all that much.

I, personally, don't backup virtual machines.

Don't get attached to them. When they fail, throw them away and build a new one. Make sure you have procedures in place that allow you to quickly set up a new VM and put the most recent backup of your data back. A great way to do this is to provision them. You can read all about it here (Page 17).

If you do backups, backup what matters. Backup the raw data. Files, Databases, ...

Bart De Vos
  • 17,911
  • 6
  • 63
  • 82
  • 2
    It can take hours to rebuild a machine. Backing up a VM would save time. – cja Jun 18 '14 at 11:02
  • I think you need to look at your deployment strategy. If it takes more then 30 mins to rebuild an existing machine, you might need to invest in this a bit. – Bart De Vos Jun 18 '14 at 13:06
  • I may be able to automate the rebuilding of my Windows 8.1 development VM, but it'd probably take a lot longer than backing up the VM. – cja Jun 18 '14 at 13:08
  • Have to go with Bart on this one. A rapid easy to use deployment strategy and backing up what matters makes sense. VM backups are like an attic: You keep throwing what you don't want to think about into the attic until it's full of mostly what you don't need and it's hard to find what you do. – Mark172 Jan 23 '15 at 20:30
1

I just wrote simple backup script in python, check it out http://blog.erben.sk/2014/05/30/vmware-backup-script/

iwik
  • 11
  • 2
0

We have developed a totally self contained solution, which has a minimum footprint on the ESXi hypervisor. We offer a totally free and fully functional version that will allow you to backup an unlimited number of VMs and ESXi hosts, it basically has no restrictions.

It is capable of performing hot backups, both to another datastore and differential over IP to another ESXi host or Linux box by means of Rsync. It is cron programmable. Any Linux user can configure it in a couple of minutes.

You can download here: https://33hops.com/xsibackup-copia-de-seguridad-vmware-esxi.html

Daniel J.
  • 214
  • 1
  • 5