-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
In some cases it might be nesessary to create a backup directly on a remote machine for example if the remaining storage space on the PLC is to little to store the whole backup.
This could be achieved as follows.
On the PLC for local backups:
TAR_Local= tar -cpf ${StoreBackupAt}/backup-${DATE}.tar -C
Adding a remote destination parameter the same backup script could be used even from a remote host.
On a PC connecting to the PLC via SSH:
REMOTE=user@192.168.1.10
TAR_Remote= ssh ${REMOTE} "tar -C ${DATAPATH} -cpf -
Another possibility to consider should be RSYNC and GIT to keep an archive of backups remotly continuously.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request