@𝓒𝓱𝓻𝓲𝓼 Using PHPMyAdmin here. Easy.
Comment on @Hubzilla Support Forum Mine is running on a shared host. I have SSH and Git a
chris@im.allmendenetz.de 3 weeks ago
@Alfred Bühler https://www.netland.ch/ ??
How to manage Buckups on a shared host ?
How do you backup the DB ?
just found this:
https://sqlbackupandftp.com/features
any good ? @Der Pepe (Hubzilla) ⁂
How to manage Buckups on a shared host ?
How do you backup the DB ?
just found this:
https://sqlbackupandftp.com/features
any good ? @Der Pepe (Hubzilla) ⁂
jrp@hub.kliklak.net@hub.kliklak.net 3 weeks ago
chris@im.allmendenetz.de 3 weeks ago
@*_jߍyrope sure but looking for automated backup optionsabu@hub.alfredbuehler.ch 3 weeks ago
@𝓒𝓱𝓻𝓲𝓼 Saving the directory and associated SQL dump doesn't require an extra tool.backup() {
ssh -T $HOST << EOF
tar -C $APPDIR_REMOTE -czf archive/$ARCHIVE.tar.gz
mysqldump -h 127.0.0.1 $DBNAME > archive/$ARCHIVE.sql
gzip -f archive/$ARCHIVE.sql
find archive/ -type f -name "${PREFIX}*.gz" -mtime +$DAYS -delete
EOF
scp $HOST:/archive/$ARCHIVE.* .
}chris@im.allmendenetz.de 3 weeks ago
Using a self-made shell script.