提问者:小点点

ActiveMQ Artemis无法获取队列统计信息


有一个命令。/artemis应该显示队列的统计信息:。/artemis队列stat(最后一个):

The most commonly used artemis commands are:
    address     Address tools group (create|delete|update|show) (example ./artemis address create)
    browser     It will browse messages on an instance
    consumer    It will consume messages from an instance
    create      creates a new broker instance
    data        data tools group (print) (example ./artemis data print)
    help        Display help information
    mask        mask a password and print it out
    migrate1x   Migrates the configuration of a 1.x Artemis Broker
    producer    It will send messages to an instance
    queue       Queue tools group (create|delete|update|stat|purge) (example ./artemis queue create)

但是,当我尝试使用它./artemis队列stat--user=master--code=master--url=tcp://0.0.0.0:1616时,我得到

Exception in thread "main" ActiveMQConnectionTimedOutException[errorType=CONNECTION_TIMEDOUT message=AMQ219014: Timed out after waiting 30,000 ms for response when sending packet -12]

ActiveMQ Artemis代理在端口1616的远程机器上运行。

通过这些命令创建队列的尝试是成功的,但我也未能通过这种方式清除队列。

有什么问题的想法吗?


共1个答案

匿名用户

如果代理运行在与您运行队列stat命令的机器不同的机器上,则urltcp://0.0.0.0:1616将不起作用。地址0.0.0.0是一个特殊的元地址,仅对接收网络连接的进程(即充当服务器)真正有用。此地址允许服务器在所有网络接口上接收连接。它在客户端上无法正常运行。您可以在此处阅读更多关于0.0.0.0的信息。