Hi everybody.
I installed HomeAssistant on my raspberry pi 4 using the official tutorial https://www.home-assistant.io/docs/installation/raspberry-pi/.
Unfortunately, this installation is non-supervised which seems very limited to me.
I found a great tutorial (Installing Home Assistant Supervised on Raspberry Pi OS) to install a supervised version using Docker. However, I only did the Docker 101 tutorial so I’m very basic.
Unfortunately, silly me didn’t remove the non-supervised, non-dockered installation (I don’t even know how should I)
I did a sudo systemctl stop [email protected]
, but then localhost::8123
throws an ERR_CONNECTION_REFUSED
server error. If I start the service again, localhost::8123
points to the unsupervised version again.
Here are some more info:
pi@raspberrypi4:~ $ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
bdbf5cb6eeb3 homeassistant/armv7-hassio-multicast:3 "/init" 2 days ago Up 2 days hassio_multicast
98fca40d03c0 homeassistant/armv7-hassio-observer:2020.10.1 "/init" 2 days ago Up 2 days 0.0.0.0:4357->80/tcp hassio_observer
b028749522e6 homeassistant/armv7-hassio-cli:2020.10.1 "/init /bin/bash -c …" 2 days ago Up 2 days hassio_cli
8e57ead0f320 homeassistant/armv7-hassio-audio:17 "/init" 2 days ago Up 2 days hassio_audio
55ba04b8c8e6 homeassistant/armv7-hassio-dns:2020.11.0 "/init" 2 days ago Up 2 days hassio_dns
013c0d373952 homeassistant/armv7-hassio-supervisor "/init" 2 days ago Up 2 days hassio_supervisor
localhost::4357
is accessible though, and it says “Home Assistant observer - Supervisor:Connected”.
I can also run sudo ha
in my SSH console with no problem.
Any idea how could I debug this and have the docker, supervised version on port 8123?