Hi Phoenix,
I took your advice and attempted with an installation. Downloaded Zimbra for FC5 and the first installation failed during LDAP Initalization. After poking around, it seems FC6 has added more restrictions to sudo. The zimbra installation log shows
--
sudo: sorry, you must have a tty to run sudo
ERROR - failed to start slapd
--
{ZIMBRA_HOME}/bin/ldap start tries to execute sudo ...
And sure enough, /etc/sudoers has
--
Defaults requiretty
--
Quick solution was to comment out this requirement
#Default requiretty
and reinstall. That solve the installation and all is good. However, a better approach would be to use su -l zimbra -c '....' in the start scripts.
-Charles |