-
Bug
-
Resolution: Done
-
Major
-
fuse-7.3.1
-
None
-
%
-
-
?
In order to get a remote client access to hawtio when <host> is using a FQDN in jolokia-access.xml, we manage to access Hawtio console remotely but can see only Connect tab and not getting others tab like JMX,
<remote> <host>myclient.mycompany.com</host> </remote>
It only works when it is an IP address or an IP range.
Undertow by default doesn't enable the reverse DNS lookup so we need to enable it by
setting up PeerNameResolvingHandler as follows:
@Bean public EmbeddedServletContainerFactory customizer() { UndertowEmbeddedServletContainerFactory factory = new UndertowEmbeddedServletContainerFactory(); factory.addDeploymentInfoCustomizers(deploymentInfo -> { deploymentInfo.addInitialHandlerChainWrapper(PeerNameResolvingHandler::new); }); return factory; }
- is caused by
-
ENTESB-9921 In jolokia-access.xml, allowing a remote access using FQDN doesn't work.
- Closed
- is related to
-
ENTMQBR-2303 In jolokia-access.xml, allowing a remote access using FQDN doesn't work.
- Closed