Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Activemq の管理コンソールは、標準で 0.0.0.0:8161 を指しています。
jetty.xml 構成ファイルでポートを 8161 から変更できることはわかっています。
URL を 0.0.0.0 から変更することはできますか?
答えはかなり明白でした。jetty.xml で:
<bean id="Connector" class="org.eclipse.jetty.server.nio.SelectChannelConnector"> <property name="port" value="8161" /> <property name="host" value="HOSTNAME" /> </bean>