Hi Jay2k1,
well, now that I managed to get our services back up and running, I'd like to bring up the solution here:
We have /opt/zimbra/db and /opt/zimbra/data symlinked to a faster drive (RAID10).
The update process apparently exports /opt/zimbra/data (or parts of it) and then deletes it (don't know why, but it's the case). I guess this happens because it is symlinked.
I figured that out after running the installer a second time.
Somewhere in the script it then recreates the directory with a new/or empty ldap database. Now of couse none of the services can retrieve their settings from LDAP and therefore fail to start.
Solution in my case was to
Code:
root@host#mount --bind /path/to/zimbra/data /opt/zimbra/data
which leads in /etc/fstab to
Code:
/path/to/zimbra/data /opt/zimbra/data none rw,bind 0 0
I did the same for the symlinked /opt/zimbra/db directory.
Now our store has all its data in it and the mailboxes are current.
The time consuming thing was learning why it failed and not the solution itself.
Afterall it's been quite frustrating but I'm glad we didn't lose any data.
/Stefan