you are the hero, that worked!!!
To be more precise, I put it into etc/grid/template.xml file before the first target definition.
So, the whole section now reads:
- Code: Select all
<properties id="JavaServer">
<!-- IPv6 is switched-off on this server, make Ice aware about this fact! -->
<property name="Ice.IPv6" value="0"/>
<target name="adh">
<property name="Ice.Default.Protocol" value="ssl"/>
<property name="Ice.Plugin.IceSSL" value="IceSSL.PluginFactory"/>
<property name="IceSSL.Ciphers" value="NONE (DH_anon)"/>
<property name="IceSSL.VerifyPeer" value="0"/>
</target>
<target name="ssl">
<property name="Ice.Default.Protocol" value="ssl"/>
<property name="Ice.Plugin.IceSSL" value="IceSSL.PluginFactory"/>
<property name="IceSSL.DefaultDir" value="etc/certs"/>
<property name="IceSSL.CertFile" value="pubkey.pem"/>
<property name="IceSSL.KeyFile" value="privkey.pem"/>
<property name="IceSSL.CertAuthFile" value="ca.pem"/>
</target>
</properties>
At the moment, we have IPv6 switched-off on all our machines since we do not use it yet and occasionally saw strange secondary effects when having it enabled but not used. This is now the 1st case the other way around. Sorry, disabled IPv6 being the culprit did not come into my mind at all.
Would it be worth to mention this somewhere in the documentation? In particular since Ice34 apparently does not show this behavior/effect (our PROD server on OMERO5.0.2/Ice34/CentOS6.5 runs perfectly fine without this extra setting)?
Thanks a lot again for this excellent support.
Best,
-Rainer