Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

...

Advarsel

With Java 10 accidently installed, i experienced that all things suddenly was "uninitiallized".


Installing openHAB

Very simple, just follow https://www.openhab.org/docs/installation/linux.html#package-repository-installation


Backup

The easiest way is the make a cron job for backup, information on backup and restore are at https://www.openhab.org/docs/installation/linux.html#backup-and-restore

Kodeblok
sudo vi /etc/crontab


0 22 * * * /usr/share/openhab2/runtime/bin/backup	

If You run the backup job manually one time, the location of the backup file(s) are shown:

Kodeblok
root@homeassist:/usr/share/openhab2/runtime/bin# ./backup

#########################################
       openHAB 2.x.x backup script
#########################################

Using '/etc/openhab2' as conf folder...
Using '/var/lib/openhab2' as userdata folder...
Using '/usr/share/openhab2/runtime' as runtime folder...
Using '/var/lib/openhab2/backups' as backup folder...
Writing to '/var/lib/openhab2/backups/openhab2-backup-18_12_22-11_44_32.zip'...
Making Temporary Directory if it is not already there
Using /tmp/openhab2/backup as TempDir
Copying configuration to temporary folder...
Removing unnecessary files...
Backup Directory is inside userdata, not including in this backup!
Zipping folder...
Removing temporary files...
Success! Backup made in /var/lib/openhab2/backups/openhab2-backup-18_12_22-11_44_32.zip

root@homeassist:/usr/share/openhab2/runtime/bin#


Security

Notice that OpenHab has no security, and You need to install it in front of openHab. Do read Securing Communication and access to openHAB

...