Unable to Access ZWAVE JS UI through port 8091
Posted: Saturday 02 March 2024 12:10
Followed the wiki
https://www.domoticz.com/wiki/Zwave-JS-UI
The server/service is correctly started
But cannot access it from my laptop http://192.168.178.22:8091
Also tried on the Raspberry PI
wget http://localhost:8091
--2024-03-02 12:07:02-- http://localhost:8091/
Resolving localhost (localhost)... ::1, 127.0.0.1
Connecting to localhost (localhost)|::1|:8091... failed: Connection refused.
Connecting to localhost (localhost)|127.0.0.1|:8091... failed: Connection refused.
Are there any ports that need to be opened?
Edit Waltervl: code brackets
https://www.domoticz.com/wiki/Zwave-JS-UI
Code: Select all
docker-compose.yaml
version: "3.7"
services:
zwave-js-ui:
container_name: zwave-js-ui
image: zwavejs/zwave-js-ui:latest
restart: unless-stopped
tty: true
stop_signal: SIGINT
environment:
- SESSION_SECRET=mySecretSession
- TZ=Europe/Brussels
devices:
- '/dev/serial/by-id/usb-0658_0200-if00:/dev/zwave'
volumes:
- ./store:/usr/src/app/store
ports:
- "8091:8091" # port for web interface
- "3000:3000" # port for Z-Wave JS websocket server
But cannot access it from my laptop http://192.168.178.22:8091
Also tried on the Raspberry PI
wget http://localhost:8091
--2024-03-02 12:07:02-- http://localhost:8091/
Resolving localhost (localhost)... ::1, 127.0.0.1
Connecting to localhost (localhost)|::1|:8091... failed: Connection refused.
Connecting to localhost (localhost)|127.0.0.1|:8091... failed: Connection refused.
Are there any ports that need to be opened?
Edit Waltervl: code brackets