Domoticz on ReadyNAS
Today I've run Domoticz on my NAS (ReadyNAS OS 6 running on Ultra 4). Installation is very simple (in contrast to run on CentOS 7). I've downloaded domoticz from their site:
cd /tmp wget "https://releases.domoticz.com/releases/release/domoticz_linux_x86_64.tgz"
Extracted files:
cd /opt mkdir domoticz-2017-03-13 cd domoticz-2017-03-13 tar -zxf /tmp/domoticz_linux_x86_64.tgz
Created file /lib/systemd/system/domoticz.service:
[Unit] Description=Domoticz uruchoamiany automatycznie After=network.target [Service] ExecStart=/opt/domoticz-2017-03-13/domoticz -daemon KillMode=process Restart=on-failure [Install] WantedBy=multi-user.target
and register service to start automatically :
systemctl enable domoticz systemctl start domoticz
and that's all. Now you can check if it's work: http://192.168.1.1:8080/ - of course you have to change IP address.
Kommentare
Bitte melden Sie sich Logan oder registrieren Sie sich um kommentieren zu können.