I've just upgraded my (local-only) zimbra installation from 9.0.0 to 10.0.0 and just after the upgrade mailboxd and a few other services wouldn't start:
[root@zimbra01 ~]# su -ls /usr/bin/bash -c 'zmcontrol status' zimbra
load average: 0.91 1.81 1.88
Host zimbra01.archyslife.lan
amavis Running
antispam Running
antivirus Running
dnscache Running
ldap Running
logger Running
mailbox Stopped
zmmailboxdctl is not running.
memcached Running
mta Running
opendkim Running
proxy Running
service webapp Stopped
zmmailboxdctl is not running.
snmp Running
spell Running
stats Running
zimbra webapp Stopped
zmmailboxdctl is not running.
zimbraAdmin webapp Stopped
zmmailboxdctl is not running.
zimlet webapp Stopped
zmmailboxdctl is not running.
zmconfigd Running
I've done a bit of debugging and found a forum post somewhere that recommended to remove the 'docServerHttpsConnector' block from the jetty xmls. Remove this block
<Call id="docServerHttpsConnector" name="addConnector">
<Arg>
<New id="docServer" class="org.eclipse.jetty.server.ServerConnector">
<Arg name="server">
<Ref refid="Server" />
</Arg>
<Arg name="factories">
<Array type="org.eclipse.jetty.server.ConnectionFactory">
<Item>
<New class="org.eclipse.jetty.server.SslConnectionFactory">
<Arg name="next">http/1.1</Arg>
<Arg name="sslContextFactory">
<Ref refid="zimbraSslContextFactory" />
</Arg>
</New>
</Item>
<Item>
<New class="org.eclipse.jetty.server.HttpConnectionFactory">
<Arg name="config">
<Ref refid="sslHttpConfig" />
</Arg>
</New>
</Item>
</Array>
</Arg>
<Set name="host"></Set>
<Set name="port">%%zimbraDocumentEditingCallbackPort%%</Set>
<Set name="idleTimeout">60000</Set>
</New>
</Arg>
</Call>
From the following files:
- /opt/zimbra/jetty_base/etc/jetty.xml
- /opt/zimbra/jetty_base/etc/jetty.xml.in
After that, stop and start the zimbra services using 'zmcontrol':
[root@zimbra01 ~]# su -ls /usr/bin/bash -c 'zmcontrol stop' zimbra
[root@zimbra01 ~]# su -ls /usr/bin/bash -c 'zmcontrol start' zimbra
All services should now start again as expected.
Feel free to comment and / or suggest a topic.
Comments
Post a Comment