RockteMQ-AI commented on issue #737: URL: https://github.com/apache/rocketmq-spring/issues/737#issuecomment-5190442324
**Issue Evaluation** Category: `question` The log shows the consumer container started successfully (`running=true`), but the consumer group is not appearing as "online" in the dashboard. This is typically caused by: 1. **Consumer group not registered with broker** — The 5.x client uses a different registration mechanism than 4.x. Verify the consumer group exists in the broker configuration. 2. **Namespace mismatch** — If using namespace, ensure both producer and consumer use the same namespace. 3. **Access mode** — Check if the broker requires specific access credentials (`accessKey`/`secretKey` are empty in your config). For RocketMQ 5.x with Spring Boot, the consumer registration happens through the Proxy endpoint (`192.168.2.177:8081`). Verify the Proxy is running and the consumer group is configured there. --- *Automated evaluation by @RockteMQ-AI* -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
