Enlace Domoticz-Alexa : ha-bridge
2021-08-14ha-bridge es un software que simula un puente zigbee Philips Hue en su computadora.
Instalación de ha-bridge
Instalaremos con el usuario domotiko creado anteriormente.
Requisitos previos:
- El usuario domotiko debe existir.
- java > = 8 debe estar instalado.
sudo su - domotiko
mkdir ha-bridge
cd ha-bridge
wget https://github.com/bwssytems/ha-bridge/releases/download/v5.4.1RC1/ha-bridge-5.4.1RC1.jar -O ha-bridge.jar
exit
Creando el servicio:
Predeterminado ha-bridge Escucha en el puerto 80, ya utilizado por apache, lo haremos escuchar el puerto 8082 para reducir el riesgo de conflicto.
sudo bash
cat > /etc/systemd/system/ha-bridge.service <<!
[Unit]
Description=HA Bridge
Wants=network.target
After=network.target
[Service]
Type=simple
WorkingDirectory=/home/domotiko/ha-bridge
ExecStart=/usr/bin/java -jar -Dserver.port=8082 -Dconfig.file=/home/domotiko/ha-bridge/data/habridge.config /home/domotiko/ha-bridge/ha-bridge.jar
User=domotiko
RuntimeDirectory=domotiko
LogsDirectory=domotiko
Restart=on-abort
PIDFile=/var/run/domotiko/ha-bridge.pid
[Install]
WantedBy=multi-user.target
!
sudo systemctl daemon-reload
sudo systemctl start ha-bridge.service
sudo systemctl enable ha-bridge.service
Ha-Bridge ahora es accesible para: http: // Dirección_du_PI: 8082 /
Opcional pero recomendado: configurar un usuario.
Conectar a la interfaz: http: // Dirección_du_PI: 8082 Haga clic «Update Security Settings»
Personalizar apache para el puerto de relé 80 al puerto 8082
Google Home al puerto 8082.
Los módulos necesarios se activan y lanzan el editor nano para cambiar la configuración predeterminada del sitio web:
sudo a2enmod proxy proxy_http headers
sudo nano /etc/apache2/sites-enabled/000-default.conf
En el editor, ahora es necesario agregar las líneas a continuación después de la línea “<virtuadhost *: 80>’:
ProxyPass /api http://localhost:8082/api nocanon
ProxyPassReverse /api http://localhost:8082/api
ProxyRequests Off
AllowEncodedSlashes NoDecode
# Local reverse proxy authorization override
# Most unix distribution deny proxy by default (ie /etc/apache2/mods-enabled/proxy.conf in Ubuntu)
<Proxy http://localhost:8082/api*>
Order deny,allow
Allow from all
</Proxy>
Guarde el archivo con Ctrl-X
(1) está activado, y estimulado:
sudo systemctl enable apache2
sudo systemctl stop apache2
sudo systemctl start apache2
Ahora puede personalizar el enlace Alexa-Domoticz : consulte el artículo Amazon Alexa
Nota:
Después de la migración de pi a bullseye, apache no comenzó en el lanzamiento.
Sep 23 17:45:24 localhost apachectl[500]: (99)Cannot assign requested address: AH00072: make_sock: could not bind to address 192.168.24.103:80
Sep 23 17:45:24 localhost apachectl[500]: no listening sockets available, shutting down
Sep 23 17:45:24 localhost apachectl[500]: AH00015: Unable to open logs
Sep 23 17:45:24 localhost apachectl[449]: Action 'start' failed.
Sep 23 17:45:24 localhost apachectl[449]: The Apache error log may have more information.
Manual con sudo systemctl start apache2
caminó sin un problema.
Restart=on-failure
RestartSec=10
Ahora, el primer inicio de apache falla, pero un segundo intento obtiene automáticamente 10 segundos más tarde.