1

I have deployed an hawtio enabled spring-boot application in an openshift environment. But I am facing issue in accessing Jolokia endpoint through hawtio.

I noticed On the pod logs of my application, that set of actuator endpoints are exposed during startup where the Jolokia endpoint is not listed in that.

But I also could observe the below information in the startup logs Jolokia: Agent started with URL https://ipaddress:8778/jolokia/

Bascially I suspect a conflict between the Jolokia endpoint that comes with spring-actuator and Openshift default Jolokia capabilities causing this issue.

Any Idea or Suggestion about the issue and fix?

Robin
  • 109
  • 9

1 Answers1

2

This issue is resolved now

Solution: Disable the default Jolokia in openshift.

This issue has been resolved by disabling the default Jolokia through environment variable in openshift as per the documentation . Added the below Env variable:

AB_JOLOKIA_OFF: true

Robin
  • 109
  • 9