Replies: 9 comments 4 replies
-
How did you installed z2m? I feel like it's a problem with configuration database. Also please attach zwavejs driver logs |
Beta Was this translation helpful? Give feedback.
-
I'm quite sure the problem is caused due to incorrect installation, I've searched quite extensive but there is not really a noob instruction from the start. So So I started with this instruction. "Installation" step 1 "Configure the path for your serial device" in the above instruction Step 2 is setting the timezone. Step 3 After that I got 3 options of installation but It's not clear what the advantages/disadvantages are or make a decision on what choice is best in my situation because there is no explanation whatsoever.
This gave
And then nothing happens.... So I've googled further and then found another command and changed it to the settings I already found out so it became: And opening the url with port 8091 I got the ZWave2MQTT UI page. Everything seems to work but I don't get the manufacturer and device info and it seems not all configuration settings and values are there. |
Beta Was this translation helpful? Give feedback.
-
zwavejs2mqtt_2022-07-31.log |
Beta Was this translation helpful? Give feedback.
-
Found another log file, not sure which one you need.. |
Beta Was this translation helpful? Give feedback.
-
In the log it says
So i think that's the reason the right names and settings doesn't show up. The only question is why are these config files not loading? |
Beta Was this translation helpful? Give feedback.
-
Just copy the base docker-compose file into a folder, in this folder create also a
Content of docker-compose.yml: version: "3.7"
services:
zwavejs2mqtt:
container_name: zwavejs2mqtt
image: zwavejs/zwavejs2mqtt:latest
restart: always
tty: true
stop_signal: SIGINT
environment:
- SESSION_SECRET=mysupersecretkey
- ZWAVEJS_EXTERNAL_CONFIG=/usr/src/app/store/.config-db
# Uncomment if you want log times and dates to match your timezone instead of UTC
# Available at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
#- TZ=America/New_York
networks:
- zwave
devices:
# Do not use /dev/ttyUSBX serial devices, as those mappings can change over time.
# Instead, use the /dev/serial/by-id/X serial device for your Z-Wave stick.
- '/dev/serial/by-id/insert_stick_reference_here:/dev/zwave'
volumes:
- ./store:/usr/src/app/store
ports:
- "8091:8091" # port for web interface
- "3000:3000" # port for Z-Wave JS websocket server
networks:
zwave:
volumes:
zwave-config:
name: zwave-config |
Beta Was this translation helpful? Give feedback.
-
Tried the above with the change in the yml file
changed to
Triple checked if the name was correct. But then the serial driver can't be opened with the following error in the debug window.
I also checked if under setting the correct serial port is set to "/dev/serial/by-id/usb-Silicon_Labs_CP2102_USB_to_UART_Bridge_Controller_0001-if00-port0" but he is still not able to open the serial port. Tried a reboot, tried removing the usb stick and put it back in but nothing helps. The strange thing is that in the previous zwavejs2mqtt install I had no problems with the serial port. |
Beta Was this translation helpful? Give feedback.
-
Is it correct that in the above yml code, the volume is different than in the original yml file? in the original file |
Beta Was this translation helpful? Give feedback.
-
It's not completely clear what the problem caused and therefore not what made it work but it's working now. Thank you all for your support! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
In quite new on this so I got somehow can help me with this. I use OZW on Domoticz but have continues problems with it so I'm testing this zwavejs2MQTT.
I've managed to install it in a Docker container on a Raspberry Pi. I can add nodes but all nodes I've tried (Fibaro FGMS001 and Aeotec recessed door sensor) but they came up with Unknown manufacturer and product and are missing settings and values.
I've tried excluding and including again, tried re-interviews but nothing helps. The interview state is completed. I found several bug reports that were about the same problem but they are marked as solved. Some say it should be solved with a re-interview but like I said, tried that but didn't since my problem.
How can I solve this?
Beta Was this translation helpful? Give feedback.
All reactions