Closed burpy closed 5 years ago
I found the solution. I removed the
-platform minimal
I changed the two override.conf
s into
[Service]
ExecStart=
ExecStart=/usr/bin/deCONZ --http-port=8090 --ws-port=8090 --auto-connect=1 --dbg-error=1
and now it works!
sudo netstat -pat | grep LISTEN
shows now
tcp 0 0 0.0.0.0:ssh 0.0.0.0: LISTEN 717/sshd
tcp 0 0 0.0.0.0:8090 0.0.0.0: LISTEN 823/deCONZ
tcp 0 0 0.0.0.0:https 0.0.0.0: LISTEN 823/deCONZ
tcp6 0 0 [::]:33061 [::]: LISTEN 698/homebridge
tcp6 0 0 [::]:http-alt [::]: LISTEN 1079/homebridge-con tcp6 0 0 [::]:http [::]: LISTEN 733/apache2
tcp6 0 0 [::]:51826 [::]: LISTEN 698/homebridge
tcp6 0 0 [::]:ssh [::]: LISTEN 717/sshd
tcp6 0 0 [::]:36025 [::]:* LISTEN 698/homebridge
I have a RPI 4/4GB with buster and I installed apache as a webserver. I have homebridge on Port 8080 too. Now I installed deconz with
sudo apt install deconz
and after a reboot deconz is overwriting the apache (80, http) and the homebridge (8080, http-alt).
sudo netstat -pat | grep LISTEN
shows this
I made two directories
/etc/systemd/system/deconz-gui.service.d/
and/etc/systemd/system/deconz.service.d
with an file in each calledoverride.conf
the content is
... but it doesn't helped much. It helped to reach it on port 8090 but port 80 and 8080 is blocked from deconz too.
The result of sudo systemctl status deconz-gui is
Can someone help me? Thanks!