This issue is mainly occurring due to the incorrect permission of /opt/zimbra/redolog and /opt/zimbra/redolog/redo.log.
Do the following steps:
[root@zimbra bin]# ls -l /opt/zimbra/redolog
total 8
drwxr-x--- 2 root root 4096 Mar 20 13:17 archive
-rw-r----- 1 root root 1292 Apr 11 19:11 redo.log
The chower ship of /opt/zimbra/redolog/redo.log and /opt/zimbra/redolog must be zimbra.
chown -R zimbra.zimbra /opt/zimbra/redolog/
[root@zimbra bin]# ls -l /opt/zimbra/redolog
total 8
drwxr-x--- 2 zimbra zimbra 4096 Mar 20 19:17 archive
-rw-r----- 1 zimbra zimbra 1292 Apr 11 19:59 /opt/zimbra/redolog/redo.log
Now try the "zmcontrol status" and "zmcontrol start". This will work fine now.
Note: If you are facing difficulty in running "zmcontrol status", try the exact path "/opt/zimbra/bin/zmcontrol status".
Unable to get information from zmcontrol
Saturday, May 10, 2008
Posted in: tomcat, zimbra, zmcontrol | 0 Comments | Email This
How to Deploy Zimlet in Zimbra
The Zimbra mail server binaries are located in the location /opt/zimbra/bin. The binary /opt/zimbra/bin/zmzimletctl will help you in implementing or deploying new zimlet.
Zimlet is mainly Integrating the Zimbra Collaboration Suite (ZCS) with third party information systems and content as well as creating "mash-up" user interfaces within the Zimbra suite itself.
Try the following option to list the deplyed Zimlet:
/opt/zimbra/bin/zmzimletctl listZimlets
The deployed zimlets are usually located in the section /opt/zimbra/zimlets. It will be like com_zimbra_email.zip.
The extra zimlets are located in /opt/zimbra/zimlets-extra/ and /opt/zimbra/zimlets-admin-extra/.
The /opt/zimbra/zimlets-admin-extra/ is mainly used to deploy the functions in Admin - interface and other one (/opt/zimbra/zimlets-extra/) is for Client (webmail) part.
If you want to deploy the Amazone - Zimlet, do the following:
cd /opt/zimbra/zimlets-extra/
/opt/zimbra/bin/zmzimletctl deploy com_zimbra_amzn.zip
/opt/zimbra/bin/zmzimletctl listZimlets
You can also deploy the same using Admin-Zimbra interface.
Posted in: zimbra, zimlet | 0 Comments | Email This