+ Debugging Hass.io +
++
The following debug tips and tricks are for people who are running the Hass.io image. If you use the generic Linux installer script, you should be able to access your host and logs as per your host.
+SSH acces to the host
+Create an authorized_keys
file in the root of your SD card with your public key. Once the device is booted, you can acces your device as root over SSH on port 22222.
Windows instructions how to generate and use private/public keys with Putty are here. Instead of the droplet instructions, add the public key as per above instructions.
+Checking the logs
+# Logs from the supervisor service on the Host OS
+journalctl -f -u resin-supervisor.service
+
+# Hass.io supervisor logs
+docker logs hassio_supervisor
+
+# Home Assistant logs
+docker logs homeassistant
+
+