Yet another web backup. SQL and FTP backup (with mysqldump and wget)
- Backup your files via FTP
- Backup your database via Mysqldump
- Rotate backups (in days)
- Compression
- Mysqldump (mysql-client)
- Wget
- GZip
- Bash
apt-get install wget gzip mysql-client
wget https://raw.githubusercontent.com/drdada/WebBackup/master/backup.sh
nano backup.sh
chmod +x backup.sh
./backup.sh
Now you can configure cron etc...
Tell me ?