channel.backup
using inotify
LND backup script for Install inotify
sudo apt install inotify-tools
Create script to watch for changes and copy on change
Create a script file at the path of your choice: /path/copy-channel-backup-on-change.sh
#!/bin/bash
while true; do
inotifywait /path/to/.lnd/data/chain/bitcoin/mainnet/channel.backup
cp /path/to/.lnd/data/chain/bitcoin/mainnet/channel.backup /backup/path/channel.backup
done
chmod +x /path/copy-channel-backup-on-change.sh
Use systemd to run as service
Create file: sudo emacs /etc/systemd/system/backup-channels.service
[Service]
ExecStart=/path/copy-channel-backup-on-change.sh
Restart=always
RestartSec=1
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=backup-channels
User=ubuntu
Group=ubuntu
[Install]
WantedBy=multi-user.target
Start
sudo systemctl start backup-channels
Monitor
journalctl -fu backup-channels
Run at boot
sudo systemctl enable backup-channels
Check that the backup is working
touch /path/to/.lnd/data/chain/bitcoin/mainnet/channel.backup
Look to see if the backup was updated
Hi. I am trying to get a copy of my scb. i am running umbrel on linux ubuntu 20.04. everything works as you described. But:
inotify is making a backup every minute of my channel.backup file - even when there is no change in file. i dont know how to handle this.