Quote:
Originally Posted by newbie_sg I have a similar situation. My data store is currently in /opt/zimbra/store and I need to move it to a larger partition /data.
Is it not possible to do this using the CLI zmvolume? I do not have much experience with linux and I'm looking for the simplest way to do this. |
# cd /opt/zimbra
# mkdir /data/zimbra
# mv store /data/zimbra/
# ln -s /data/zimbra/store .
That moves the /opt/zimbra/store/ directory to /data/zimbra/store/.
Then creates a symlink from /data/zimbra/store/ to /opt/zimbra/store. That way, Zimbra can be started as per normal. It will write it's data to /opt/zimbra/store ... which is really /data/zimbra/store.