wuyujia opened a new issue, #8455: URL: https://github.com/apache/rocketmq/issues/8455
### Before Creating the Bug Report - [X] I found a bug, not just asking a question, which should be created in [GitHub Discussions](https://github.com/apache/rocketmq/discussions). - [X] I have searched the [GitHub Issues](https://github.com/apache/rocketmq/issues) and [GitHub Discussions](https://github.com/apache/rocketmq/discussions) of this repository and believe that this is not a duplicate. - [X] I have confirmed that this bug belongs to the current repository, not other repositories of RocketMQ. ### Runtime platform environment Centos7 ### RocketMQ version 5.3.0 ### JDK Version 1.8 ### Describe the Bug 按照官方文档进行单机部署,https://rocketmq.apache.org/zh/docs/quickStart/01quickstart 并使用 JavaSDK 创建好生产者消费者,启动之后,Topic 能通过命令查询到 > sh bin/mqadmin topicList -n 127.0.0.1:9876 -c ```shell #Cluster Name #Topic #Consumer Group DefaultCluster TestTopic YourConsumerGroup ``` 但是当执行命令查看消费者链接情况时就出现错误 > sh bin/mqadmin consumerConnection -n 127.0.0.1:9876 -g YourConsumerGroup ```shell org.apache.rocketmq.tools.command.SubCommandException: ConsumerConnectionSubCommand command failed at org.apache.rocketmq.tools.command.connection.ConsumerConnectionSubCommand.execute(ConsumerConnectionSubCommand.java:100) at org.apache.rocketmq.tools.command.MQAdminStartup.main0(MQAdminStartup.java:177) at org.apache.rocketmq.tools.command.MQAdminStartup.main(MQAdminStartup.java:127) Caused by: org.apache.rocketmq.client.exception.MQClientException: CODE: 17 DESC: No topic route info in name server for the topic: %RETRY%YourConsumerGroup See https://rocketmq.apache.org/docs/bestPractice/06FAQ for further details. at org.apache.rocketmq.client.impl.MQClientAPIImpl.getTopicRouteInfoFromNameServer(MQClientAPIImpl.java:2050) at org.apache.rocketmq.client.impl.MQClientAPIImpl.getTopicRouteInfoFromNameServer(MQClientAPIImpl.java:2021) at org.apache.rocketmq.tools.admin.DefaultMQAdminExtImpl.examineTopicRouteInfo(DefaultMQAdminExtImpl.java:591) at org.apache.rocketmq.tools.admin.DefaultMQAdminExtImpl.examineConsumerConnectionInfo(DefaultMQAdminExtImpl.java:624) at org.apache.rocketmq.tools.admin.DefaultMQAdminExt.examineConsumerConnectionInfo(DefaultMQAdminExt.java:332) at org.apache.rocketmq.tools.command.connection.ConsumerConnectionSubCommand.execute(ConsumerConnectionSubCommand.java:71) ... 2 more ``` 另外,通过 DashBoard 也是出现同样错误。 ![image](https://github.com/user-attachments/assets/38b5bf5c-76e6-4d6d-8333-1e0cdd8aecca) 咱们官方能靠点谱吗? ### Steps to Reproduce https://rocketmq.apache.org/zh/docs/quickStart/01quickstart 按照官方的来,就能复现。 ### What Did You Expect to See? 期望应该是能看到消费者信息,消费进度等 ### What Did You See Instead? None ### Additional Context _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org