Difference between revisions of "Take backup of zimbra server"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>Zimbra_server_configuration|Zimbra</yambe:breadcrumb> =Take backup of zimbra server= To take backup of Zimbra server use following steps: # Use "df -h" to c...")
 
Line 13: Line 13:
# Start zimbra again by using '<tt>zmcontrol start</tt>' command as zimbra user  
# Start zimbra again by using '<tt>zmcontrol start</tt>' command as zimbra user  


Other backup suggestions are present at https://wiki.zimbra.com/wiki/Open_Source_Edition_Backup_Procedure and also at http://wiki.zimbra.com/wiki/Backing_up_and_restoring_Zimbra_%28Open_Source_Version%29#Another_option
Other backup suggestions are present at  
* https://wiki.zimbra.com/wiki/Open_Source_Edition_Backup_Procedure#A_Simple_Shell_Script_Method  (Most preferable and simple)
* https://wiki.zimbra.com/wiki/Open_Source_Edition_Backup_Procedure  (Other options)
* http://wiki.zimbra.com/wiki/Backing_up_and_restoring_Zimbra_%28Open_Source_Version%29#Another_option

Revision as of 12:33, 13 February 2016

<yambe:breadcrumb>Zimbra_server_configuration|Zimbra</yambe:breadcrumb>

Take backup of zimbra server

To take backup of Zimbra server use following steps:

  1. Use "df -h" to check space occupied by all files stored in /opt. Verify that enough space is free on destination drive. Note that same set of files may occupy different space on a different file-system (ext3 to ext4)
  2. Rsync /opt/zimbra to backup folder. This rsync should be done without stopping Zimbra. This is intended to reduce overall backup down-time
    rsync -vtrp --delete /opt/zimbra /backup/zimbra-yyyy-mm-dd
  3. Stop running zimbra server by running 'zmcontrol stop' as user zimbra
  4. Verify that all Zimbra processes have stopped using 'ps -U zimbra -u zimbra'
  5. Again rsync /opt/zimbra to backup folder. This time backup would be consistent / stable.
  6. Start zimbra again by using 'zmcontrol start' command as zimbra user

Other backup suggestions are present at