Link Domoticz-Alexa : ha-bridge
2021-08-14ha-bridge è un software che simula un ponte zigbee Philips Hue sul computer.
Installazione di ha-bridge
Installeremo con l’utente domotiko precedentemente creato. .
Prerequisiti:
- L’utente domotiko deve esistere.
- java > = 8 deve essere installato. .
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
Creazione del servizio:
Predefinito ha-bridge Ascolta la porta 80, già utilizzata da apache, lo farmo ascoltare la porta 8082 per ridurre il rischio di conflitto.
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
L’HA-Bridge è ora accessibile a: http: // Indirizzo_du_PI: 8082 /
Facoltativo ma consigliato: impostare un utente.
Collegare all’interfaccia: http: // Indirizzo_du_PI: 8082 Fare clic su «Update Security Settings»
Personalizza apache per la porta del relè 80 alla porta 8082
Google Home alla porta 8082.
I moduli necessari sono attivati e avviati l’editor nano per modificare le impostazioni predefinite del sito Web:
sudo a2enmod proxy proxy_http headers
sudo nano /etc/apache2/sites-enabled/000-default.conf
Nell’editor, ora è necessario aggiungere le linee seguenti dopo la linea “<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>
Salva il file con Ctrl-X
(1) è attivato e stimolato:
sudo systemctl enable apache2
sudo systemctl stop apache2
sudo systemctl start apache2
Ora puoi personalizzare il collegamento Alexa-Domoticz : vedere l’articolo Amazon Alexa
Nota:
Dopo la migrazione di pi a bullseye, apache non è iniziato al lancio.
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.
Manuale con sudo systemctl start apache2
camminato senza problemi.
Restart=on-failure
RestartSec=10
Ora il primo inizio di apache fallisce, ma un secondo tentativo ottiene automaticamente 10 secondi dopo.