Quote:
Originally Posted by lweeks There is no native means to do this with ZCS. To accomplish it, you must edit the /opt/zimbra/jetty/etc/jetty.xml.in configuration. Save a copy of the original. In each stanza:
<Call name="addConnector">
You will add:
<Set name="host">X.Y.Z.1</Set>
with your appropriate IP address. I also recommend replicated each stanza and setting the replica to listen on 127.0.0.1 as otherwise you could have issues.
Restart mailboxd to get the changes to take effect.
A ZCS upgrade will override your changes, so you'll need to restore them. You must compare the stock jetty.xml.in of your prior version with the new version, and if there are changes, modify the new version rather than just copying your prior modified version into place.
Larry |
Is a stanza the config files for the URLs: zimbra.web.xml.in and zimbraAdmin.web.xml.in.
Are you saying that in those files:
<context-param>
<param-name>zimbra.soap.url</param-name>
<param-value>http://localhost:7070/service/soap</param-value>
</context-param>
Needs to be changed to:
<context-param>
<param-name>zimbra.soap.url</param-name>
<param-value>http://127.0.0.1/service/soap</param-value>
</context-param>
Honestly, I've read the forum posts on that, I wouldn't have posted if it had worked for me.
Let me know if I had misunderstood something.
I will definetly test any suggestions to see if it works.