Greetings...
If you're nervous and want to do a full backup first, read on...
Zimbra does its own thing, all out of /opt/zimbra, even on a mac.
So, if you stop zimbra, and make sure that the database, and http
are also stopped, then you can back up the /opt/zimbra
directory structure and that'll cover things well.
You can use:
cd /opt; tar czf zimbra.20080401.tar.gz zimbra
to make a big, compressed backup.
Or, if you like, you can use rsync (remote synchronize):
cd /opt; rsync -avz zimbra /tmp
to make a complete copy in your local /tmp directory,
or you can use rsync to another system:
cd /opt; rsync -avz zimbra username@someotherinternalsystem:/var/tmp
You get the idea. Just make sure all of the services are stopped first.
The mysql database is great in that if it's stopped, backing up all of the
files is the equivalent of backing up the database.
Hope this helps. |