How to start Home Assistant Code stopped from web UI

517 views Asked by At

I am unable to start Home Assistant Core running on docker post it is stopped from "Server Controls" in web UI.

1

There are 1 answers

1
radar On

Easy answer: restart the host. If I'm not wrong, by default, HA restarts with the host.

If that does not work, you can start your docker container. Run: docker ps -a to get the list of all available containers. Identify the HA one. You should have something like this:

afa90071dd81        homeassistant/intel-nuc-homeassistant:0.118.5   "/init"                  13 hours ago        Up 13 hours                                                                                  homeassistant
ac4fe3306d98        homeassistant/amd64-hassio-supervisor           "/init"                  13 hours ago        Up 13 hours                                                                                  hassio_supervisor

(note that the status should be stopped in your case). Then, you just need to start your HA container. In the example case, that requires docker start homeassistant or docker start afa90071dd81.