Re: RasPi ZeroW :port8080 dead. New install
Posted: Tuesday 10 February 2026 20:32
Hi @FireWizard, yes i was who created the issue on gthub.
Open source Home Automation System
https://forum.domoticz.com/
Do not upgrade to the latest beta with ./updatebeta, as that will overwrite your armv6 version of Domoticz and will install the latest beta, which is armv7. The result is an error message as you have seen.and sudo ./updatebeta, regarding your post:
Code: Select all
sudo apt install libssl1.1
sudo apt install libusb-devCode: Select all
mkdir ~/domoticz
cd ~/domoticz
wget github.com/SjoerdNLD/Domoticz-Armv6/releases/download/2025.2/domoticz_linux_2025.2_armv6.tgz
sudo tar -xzvf domoticz_linux_2025.2_armv6.tgz
sudo cp domoticz.sh /etc/init.d
sudo chmod +x /etc/init.d/domoticz.sh
cd ~/domoticz
./domoticz
You are running Domoticz as a nbormal user now.At the moment starting my domoticz is possible just from "$home/domoticz" directory. It does not work as a startup service. Port443 still dead.
That is a topic for another thread.
RegardsLinux (Systemd - Preferred Method)
Most pre-built installations (e.g., curl -sSfL https://install.domoticz.com) create a service automatically. If you need to set it up manually:
1. Locate/Create the service file: Typically found at /etc/systemd/system/domoticz.service.
2. Ensure it runs under a specific user: It is recommended not to run as root. The service file should define the User, Group, and WorkingDirectory
(e.g., /home/yourusername/domoticz).
3. Enable the service: Run the following commands to ensure it starts at boot:
4. Check Status: Verify it is running withCode: Select all
sudo systemctl daemon-reload sudo systemctl enable domoticz.service sudo systemctl start domoticz.service.Code: Select all
sudo service domoticz status
Code: Select all
Locate/Create the service file: Typically found at /etc/systemd/system/domoticz.service.Code: Select all
[Unit]
Description=Domoticz home automation
After=network.target
[Service]
# Modify your credentials and path:
User= **YourUsername**
Group=**same as User**
WorkingDirectory=/home/YOURHOMEDIR/domoticz
#your domoticz isntall directory. Tipically:
ExecStart=/home/YOURHOMEDIR/domoticz/domoticz -www 8080 -sslwww 4443
Restart=on-failure
RestartSec=10
[Install]
WantedBy=multi-user.target