I am trying to get the Pulse data browser set up within our project, but having no luck. I have seen this post where John lays out pretty clear and concise instructions (from what I can tell it's still relevant) but I'm having issues troubleshooting. The version we are using is 1.7.6. Anyone have any suggestions as to what I can check out?
Below is the properties before I took a look at the repo. I saw in recent documentation that "jmx-manager-http-port" is deprecated but I'm unsure if that's the case with 1.7.6.RELEASE
<util:properties id="gemfire-props">
<prop key="log-level">warning</prop>
<prop key="mcast-port">0</prop>
<prop key="jmx-manager-start">true</prop>
<prop key="jmx-manager">true</prop>
<prop key="jmx-manager-http-port">8070</prop>
</util:properties>
Changed to this. I am able to connect to the locators and managers through GFSH no problem, have tried a couple of different ports and still able to connect to the new ones. I am never able to access localhost:[PORT]/pulse however.
<util:properties id="gemfire-props">
<prop key="mcast-port">0</prop>
<prop key="locators">localhost[11235]</prop>
<prop key="log-level">warning</prop>
<prop key="http-service-port">7070</prop>
<prop key="jmx-manager">true</prop>
<prop key="jmx-manager-port">1099</prop>
<prop key="jmx-manager-start">true</prop>
<prop key="start-locator">localhost[11235]</prop>
</util:properties>
Can post more config/information as needed.