docker 安装 emqx 5.0.16,怎么配置支持共享订阅?

我在服务器上安装了emqx 5.0.16版本,客户端订阅的主题为:$share/group_one/up/data,发送消息主题为:$share/group_one/up/data,但是订阅端接收不到消息,请问下,该怎么配置呢?是不是需要改docker里面的配置,还是topic配置的不对呢?

docker下的配置文件emqx.conf:

NOTE:

Configs in this file might be overridden by:

1. Environment variables which start with ‘EMQX_’ prefix

2. File $EMQX_NODE__DATA_DIR/configs/cluster-override.conf

3. File $EMQX_NODE__DATA_DIR/configs/local-override.conf

The *-override.conf files are overwritten at runtime when changes

are made from EMQX dashboard UI, management HTTP API, or CLI.

All configuration details can be found in emqx.conf.example

node {
name = “emqx@127.0.0.1
cookie = “emqxsecretcookie”
data_dir = “data”
}

log {
file_handlers.default {
level = warning
file = “log/emqx.log”
}
}

cluster {
name = emqxcl
discovery_strategy = manual
}

listeners.tcp.default {
bind = “0.0.0.0:1883”
max_connections = 1024000
}

listeners.ssl.default {
bind = “0.0.0.0:8883”
max_connections = 512000
ssl_options {
keyfile = “etc/certs/key.pem”
certfile = “etc/certs/cert.pem”
cacertfile = “etc/certs/cacert.pem”
}
}

listeners.ws.default {
bind = “0.0.0.0:8083”
max_connections = 1024000
websocket.mqtt_path = “/mqtt”
}

listeners.wss.default {
bind = “0.0.0.0:8084”
max_connections = 512000
websocket.mqtt_path = “/mqtt”
ssl_options {
keyfile = “etc/certs/key.pem”
certfile = “etc/certs/cert.pem”
cacertfile = “etc/certs/cacert.pem”
}
}

listeners.quic.default {

enabled = true

bind = “0.0.0.0:14567”

max_connections = 1024000

keyfile = “etc/certs/key.pem”

certfile = “etc/certs/cert.pem”

#}

dashboard {
listeners.http {
bind = 18083
}
default_username = “admin”
default_password = “public”
}

authorization {
deny_action = ignore
no_match = allow
cache = { enable = true }
sources = [
{
type = file
enable = true
# This file is immutable to EMQX.
# Once new rules are created from dashboard UI or HTTP API,
# the file ‘data/authz/acl.conf’ is used instead of this one
path = “etc/acl.conf”
}
]
}

Hi, 在使用 $sahre/{group_name}/{topic} 模式进行共享订阅时,发布者需要向 {topic} 发布消息。
例如客户端订阅了主题 $share/group_one/up/data,发布者需要向 up/data 主题发布消息。
此时每条 up/data 主题下的消息只会发送给 group_one 下的的所有共享订阅者中的其中一个(根据共享订阅投递策略选择)