Apache ActiveMQ:TCP 端口 64119 有何用途?
我在 CentOS 5.5 上运行 Apache ActiveMQ 5.5。
我搜索了ActiveMQ网站、源代码、配置文件,但找不到任何对此端口的引用。然而,当我启动代理时,这是 JVM 侦听的三个 TCP 端口之一。
有谁知道 Apache ActiveMQ 使用什么端口 64119 ?
I am running Apache ActiveMQ 5.5 on CentOS 5.5.
I have searched the ActiveMQ website, source code, configuration files, and I cannot find any reference to this port. Yet, when I start the broker, this is one of three TCP ports listened to by the JVM.
Does anyone know what port 64119 is used for by Apache ActiveMQ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Ubuntu 上尝试过使用 ActiveMQ 5.4.2。它侦听:
61616
- 代理协议8161
- Web 管理39271
- JMX 远程端口服务器未侦听任何其他端口。
编辑:我检查了 5.5.0,并重新启动了代理(5.4.2 和 5.5.0)几次。 JMX 端口总是不同的,看起来像是随机的。我敢打赌,您的
64119
也会随着时间的推移而发生变化。为了清楚起见,使用
jvisualvm
连接到ActiveMQ代理,您应该在该端口上看到从jvisualvm
到ActiveMQ进程的开放连接(我可以使用lsof看到它)。
I have tried with ActiveMQ 5.4.2 on Ubuntu. It listens on:
61616
- broker protocol8161
- web admin39271
- JMX remote portServer is not listening on any other ports.
EDIT: I checked with 5.5.0 and also restarted the broker (both 5.4.2 and 5.5.0) several times. JMX port is always different, looks like it's being randomized. I bet your
64119
changes over time as well.To make it clear, connect to ActiveMQ broker with
jvisualvm
, you should see an open connection fromjvisualvm
to ActiveMQ process on this port (I can see it withlsof
).