SENSBLUE ATLAS/Home Assistant: Difference between revisions
Appearance
Created page with "= Home Assistant integration = '''Installing Home Assistant on the SENSBLUE ATLAS / i.Cee²''' '''Objective''' Install Home Assistant in a Docker container, running alongside the stack already present on the ATLAS: * Node-RED * Mosquitto MQTT * Grafana * InfluxDB Home Assistant '''does not replace''' the native stack. It only adds an extra interface/integration layer. '''Scope:''' base installation of Home Assistant, creation of the initial account, and MQTT configu..." |
No edit summary |
||
| Line 44: | Line 44: | ||
|Local Mosquitto on 127.0.0.1:1883 | |Local Mosquitto on 127.0.0.1:1883 | ||
|} | |} | ||
Check the system:<syntaxhighlight lang="bash"> | Check the system:<syntaxhighlight lang="bash">cat /etc/os-release | grep PRETTY_NAME | ||
cat /etc/os-release | grep PRETTY_NAME | |||
uname -m | uname -m | ||
df -h / | df -h /</syntaxhighlight> | ||
</syntaxhighlight> | |||
=== 2. Ports used on ATLAS === | === 2. Ports used on ATLAS === | ||
Before and after installation, confirm that the existing stack continues to respond. | |||
{| class="wikitable" | |||
!Service | |||
!Port | |||
|- | |||
|Node-RED | |||
|1880 | |||
|- | |||
|Mosquitto MQTT | |||
|1883 | |||
|- | |||
|Grafana | |||
|3000 | |||
|- | |||
|InfluxDB | |||
|8086 | |||
|- | |||
|Home Assistant | |||
|8123 | |||
|} | |||
Check the stack's ports:<syntaxhighlight lang="bash"> | |||
for p in 1880 1883 3000 8086; do | |||
ss -tlnp | grep ":$p " && echo "port $p OK" | |||
done | |||
</syntaxhighlight> | |||