How to move ZCS to another server

How to move ZCS to another server

   KB 23043        Last updated on 2016-09-28  




0.00
(0 votes)


Problem

In this article, we will explain how to move/migrate a zimbra server to another machine.


Prerequisites

Both the source and destination zimbra servers must be running the same version. E.g. if source is running 8.6, the installed zimbra on the destination must be also 8.6.

Resolution

In a nutshell, the solution is: stop zimbra on the source server, make a backup of /opt/zimbra, install new server, stop the old server, set up the new server's networking and hosts config, install software zcs to the new machine, substitute the /opt/zimbra on the new machine with the already made backup from the old machine, fix permissions, run a normal zcs install.


Below are the exact steps that needs to be taken, to complete the migration:

On the old server:

1. # su - zimbra

2. $ zmcontrol stop

3. $ exit

4. Make sure all zimbra services are stopped:

 ps aux | grep zimbra 

5. Now, you can copy the /opt/zimbra directory to another backup location, and from there to copy it to the destination server later, or you could mount external disc and copy it there, or simply copy it to the destination server (if already installed with the correct OS).

As root user, copy it to the remote machine:

 rsync -e ssh -axvzKHS  /opt/zimbra/ 10.0.0.1:/tmp

that command will copy /opt/zimbra directory to a remote machine with IP 10.0.0.1, in the /tmp directory (using ssh). Or, you can copy it to a local mounted disk:

 rsync -axvzKHS /opt/zimbra /mnt/zimbra_backup

6. Install a new server, with supported Operating System for the zcs version.

7. Turn off the old ZCS Server

 shutdown -h now



On the new server

1. Set up the new ZCS Server:

  • change the hostname as the old server
  • change the network settings as the old server
  • double check all other network settings work too (e.g. DNS), firewall, SELinux is stopped.


2. Download a version of ZCS on the new server. (The zcs version must be the same as the one on the source server)

3. As root, run the installer with the -s option:

 ./install.sh -s

That will only install the software packages.

4. When the install -s completes, you can delete the /opt/zimbra directory.

 rm -rf /opt/zimbra

5. Now, copy the /opt/zimbra directory backup we made in step 5, to the new server in /opt directory, so that the structure is the same

 /opt/
 └── zimbra

If you have copied it to a different server, just rsync it to the new server. If you used external disk, mount it and as root rsync your backup to the new location:

 rsync -axvzKHS /mnt/zimbra_backup /zimbra /opt/.

'''6'''. As root run:
<pre style="color: green"> /opt/zimbra/libexec/zmfixperms -e -v

7. As root rerun the installer without the -s option:

 ./install.sh


Additional Content

Verified Against: Zimbra Collaboration 8.6, 8.5, 8.0 Date Created: 28/09/2016
Article ID: https://wiki.zimbra.com/index.php?title=How_to_move_ZCS_to_another_server Date Modified: 2016-09-28



Try Zimbra

Try Zimbra Collaboration with a 60-day free trial.
Get it now »

Want to get involved?

You can contribute in the Community, Wiki, Code, or development of Zimlets.
Find out more. »

Looking for a Video?

Visit our YouTube channel to get the latest webinars, technology news, product overviews, and so much more.
Go to the YouTube channel »


Wiki/KB reviewed by SME1 SME2 COPY EDITOR Last edit by Teodor Vizirov
Jump to: navigation, search