routes 命令

routes 命令用于查询路由信息。

EMQ X 中路由是指主题与节点的映射关系,用于在多个节点之间路由消息。

命令描述
routes list列出所有路由
routes show <Topic>查询指定 Topic 的路由

routes list

列出所有路由:

  1. $ ./bin/emqx_ctl routes list
  2. t2/# -> emqx2@127.0.0.1
  3. t/+/x -> emqx2@127.0.0.1,emqx@127.0.0.1

routes show

查询指定 Topic d的路由:

  1. $ ./bin/emqx_ctl routes show t/+/x
  2. t/+/x -> emqx2@127.0.0.1,emqx@127.0.0.1