After uninstalling zigbee2mqtt, still have messages to mqtt server

I’ve been testing a few things around zigbee and installed zigbee2mqtt. Seems to work well but my cpu usage went up a bit when it was running. So decided to uninstall it and move back to ZHA which I did (didn’t remove any devices, just uninstalled). Looking in the mosquito integration I can see messages coming through from zigbee2mqtt:

Message 28 received on zigbee2mqtt/bridge/config at 8:40 PM:
{
    "commit": "1.17.0",
    "coordinator": {
        "meta": {
            "maintrel": 0,
            "majorrel": 38,
            "minorrel": 88,
            "product": 0,
            "revision": "0x26580700",
            "transportrev": 0
        },
        "type": "ConBee2/RaspBee2"
    },
    "log_level": "info",
    "network": {
        "channel": 11,
        "extendedPanID": "0xdddddddddddddddd",
        "panID": 6754
    },
    "permit_join": true,
    "version": "1.17.0"
}

and:

Message 27 received on zigbee2mqtt/bridge/groups at 8:40 PM:
[]
QoS: 0 - Retain: true

and:

Message 26 received on zigbee2mqtt/bridge/devices at 8:40 PM:
[
    {
        "definition": null,
        "endpoints": {
            "1": {
                "bindings": [],
                "clusters": {
                    "input": [
                        "genOta",
                        "genTime"
                    ],
                    "output": [
                        "ssIasZone"
                    ]
                },
                "configured_reportings": []
            },

etc…

Why are these messages still coming through when it has been uninstalled? How can I stop them coming through? I presume it means zigbee2mqtt is still running despite being uninstalled?

Thanks,
Stefan

I should add zigbee2mqtt was installed/uninstalled via the supervisor. And I can’t see it running in a container in glances.

These messages are not coming from Zigbee2MQTT, but from your broker. Retained messages are kept by the broker, you can clear them through mqtt explorer.

1 Like

Thanks. That worked!