注意,我是把把官方镜像放到了自己的仓库
1、emqx官方镜像启动
docker run -d --name emqx31 -p 1883:1883 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 registry.icp.com:5000/service/iot/emqx:v3.0.1 (官方镜像是:emqx/emqx:v3.1.0)
2、启动exporter
https://github.com/nuvo/emq_exporter,我用的是他的镜像。
docker run -p 9505:9505 registry.icp.com:5000/service/iot/emq_exporter:v0.3.0 --emq.uri="http://192.168.0.133:18083" --emq.username="admin" --emq.password="public" --emq.api-version="v3" --emq.node="[email protected]"
-------------------
启动顺序肯定是先启动emqx,然后启动exporter,所以emq.uri和emq.node是知道的。
原文地址:https://www.cnblogs.com/myfrank/p/11781238.html
时间: 2024-09-28 22:24:16