Link Domoticz-Alexa : ha-bridge
2021-08-14ha-bridge é um software que simula uma ponte zigbee Philips Hue no seu computador.
Instalação de ha-bridge
Vamos instalar com o usuário domotiko anteriormente criado.
Pré-requisitos:
- O usuário domotiko deve existir.
- java > = 8 deve ser 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
Criando o serviço:
Padrão ha-bridge Ouça na porta 80, já usada por apache, vamos fazê-lo ouvir a porta 8082 para reduzir o risco de conflito.
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 agora é acessível a: http: // endereço_du_PI: 8082 /
Opcional, mas recomendado: Configure um usuário.
Conectar-se à interface: http: // endereço_du_PI: 8082 Clique em «Update Security Settings»
Personalizar apache para porta de relé 80 para a porta 8082
Google Home para a porta 8082.
Os módulos necessários são ativados e lançados o editor nano para alterar as configurações padrão do site:
sudo a2enmod proxy proxy_http headers
sudo nano /etc/apache2/sites-enabled/000-default.conf
No editor, agora você precisa adicionar as linhas abaixo após a linha ‘< 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>
Salve o arquivo com Ctrl-X
(1) é ativado e estimulado:
sudo systemctl enable apache2
sudo systemctl stop apache2
sudo systemctl start apache2
Agora você pode personalizar o link Alexa-Domoticz : ver artigo Amazon Alexa
Observação:
Após a migração de pi para bullseye, apache não começou no lançamento.
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 com sudo systemctl start apache2
andou sem um problema.
Restart=on-failure
RestartSec=10
Agora, o primeiro início de apache falha, mas uma segunda tentativa recebe automaticamente 10 segundos depois.