Reputation: 1
I just installed ActiveMQ 5.16.0 on Linux machine OEL7.8. I was able to open console using http://localhost:8161
, but when I am using http://IP:8161
on the same machine the console page is not opening in the browser. Is there any config to be done in jetty.xml
file or activemq.xml
file?
Upvotes: 0
Views: 671
Reputation: 35162
Use the host
property on jettyPort
bean in conf/jetty.xml
, e.g.:
<bean id="jettyPort" class="org.apache.activemq.web.WebConsolePort" init-method="start">
<property name="host" value="IP"/>
<property name="port" value="8161"/>
</bean>
Upvotes: 2