Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can I define the activemq admin console url?

Activemq's admin console, as standard, points to 0.0.0.0:8161.

I know I can change the port from 8161 in the jetty.xml config file.

Is it possible to change the URL from 0.0.0.0?

like image 645
user814005 Avatar asked Sep 05 '25 17:09

user814005


1 Answers

The answer was pretty obvious. In jetty.xml:

<bean id="Connector" class="org.eclipse.jetty.server.nio.SelectChannelConnector">
    <property name="port" value="8161" />
    <property name="host" value="HOSTNAME" />
</bean>
like image 106
user814005 Avatar answered Sep 07 '25 18:09

user814005