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 更改。
是否可以从 0.0.0.0 更改 URL?
答案很明显。在 jetty.xml 中:
<bean id="Connector" class="org.eclipse.jetty.server.nio.SelectChannelConnector"> <property name="port" value="8161" /> <property name="host" value="HOSTNAME" /> </bean>