(zigbee2mqtt) not starting on Windows #23748
BrooksBSolutions
started this conversation in
General
Replies: 2 comments 3 replies
-
@BrooksBSolutions # in directory zigbee2mqtt
$ git reset --hard
$ git fetch --all --tags
$ git checkout tags/1.36.0
$ npm ci
$ cp .\data\configuration.example.yaml data\configuration.yaml
# Edit the port to COM3
$ rm .\data\coordinator_backup.json
# Unplug and plug in the dongle
$ npm start
I would recommend to not use the master branch in the windows tutorial @Koenkk ? |
Beta Was this translation helpful? Give feedback.
3 replies
-
Thanks for this. Tried the newest today (v14) and got the same error (coming from 1.37.1). Rolled back one version to zigbee2mqtt-1.39.1 and no issues. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to run z2m locally on my windows device. I have the Zigbee 3.0 USB dongle and it is on COM5.
This is what I have on the config.yaml file
I have a USB-to-UART driver from silicon labs. I have mosquitto downloaded and done previous testing on that. This is the errors that I am getting.
PS C:\Users\mrubio\Documents\zigbee2mqtt-master> npm start
Starting Zigbee2MQTT without watchdog.
[2024-08-26 08:56:44] info: z2m: Logging to console, file (filename: log.log)
[2024-08-26 08:56:44] info: z2m: Starting Zigbee2MQTT version 1.39.1 (commit #unknown)
[2024-08-26 08:56:44] info: z2m: Starting zigbee-herdsman (0.55.3)
[2024-08-26 08:56:45] error: zh:zstack:znp: Failed to determine if path is valid: 'Error: ENOENT: no such file or directory, lstat 'C:\Users\mrubio\Documents\zigbee2mqtt-master\COM5''
[2024-08-26 08:56:45] info: zh:zstack:znp: Opening SerialPort with {"path":"COM5","baudRate":115200,"rtscts":false,"autoOpen":false}
[2024-08-26 08:56:45] info: zh:zstack:znp: Serialport opened
[2024-08-26 08:56:45] info: zh:zstack:znp: Writing CC2530/CC2531 skip bootloader payload
[2024-08-26 08:56:46] info: zh:zstack:znp: Skip bootloader for CC2652/CC1352
[2024-08-26 08:57:05] error: z2m: Error while starting zigbee-herdsman
[2024-08-26 08:57:05] error: z2m: Failed to start zigbee
[2024-08-26 08:57:05] error: z2m: Check https://www.zigbee2mqtt.io/guide/installation/20_zigbee2mqtt-fails-to-start.html for possible solutions
[2024-08-26 08:57:05] error: z2m: Exiting...
[2024-08-26 08:57:05] error: z2m: Error: Failed to connect to the adapter (Error: SRSP - SYS - ping after 6000ms)
at ZStackAdapter.start (C:\Users\mrubio\Documents\zigbee2mqtt-master\node_modules\zigbee-herdsman\src\adapter\z-stack\adapter\zStackAdapter.ts:119:27)
at Controller.start (C:\Users\mrubio\Documents\zigbee2mqtt-master\node_modules\zigbee-herdsman\src\controller\controller.ts:127:29)
at Zigbee.start (C:\Users\mrubio\Documents\zigbee2mqtt-master\lib\zigbee.ts:63:27)
at Controller.start (C:\Users\mrubio\Documents\zigbee2mqtt-master\lib\controller.ts:139:27)
at start (C:\Users\mrubio\Documents\zigbee2mqtt-master\index.js:154:5)
Any kind of help would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions