CLI tool for backup your databases, files to FTP / SCP / S3 / GCS and other cloud storages.
GoBackup is a fullstack backup tool design for application servers, to backup your databases, files to cloud storages (Local disk, FTP, SCP, S3, GCS, Aliyun OSS ...).
Inspired by backup/backup and replace it for without Ruby dependency.
You can write a config file, run gobackup perform
command by once to dump database as file, archive config files, and then package them into a single file.
It's allow you store the backup file to local, FTP, SCP, S3 or other cloud storages.
GoBackup 是一个类似 backup/backup 的一站式备份工具,为中小型服务器/个人服务器而设计,配合内置的计划任务,实现定时备份的目的。
使用 GoBackup 你可以通过一个简单的配置文件,一次(执行一个命令)将服务器上重要的(数据库、配置文件)东西导出、打包压缩,并备份到指定目的地(如:本地路径、FTP、云存储...)。
- No dependencies.
- Multiple Databases source support.
- Multiple Storage type support.
- Archive paths or files into a tar.
- Split large backup file into multiple parts.
- Run as daemon to backup in schedully.
- Web UI to manage backups.
- MySQL
- PostgreSQL
- Redis -
mode: sync/copy
- MongoDB
- SQLite
- Local
- FTP
- SFTP
- SCP - Upload via SSH copy
- Amazon S3
- Aliyun OSS
- Google Cloud Storage
- Azure Blob Storage
- Backblaze B2 Cloud Storage
- Cloudflare R2
- DigitalOcean Spaces
- QCloud COS
- UCloud US3
- Qiniu Kodo
- Baidu BOS
- WebDAV
since: 1.5.0
Send notification when backup has success or failed.
- Mail (SMTP)
- Webhook
- Discord
- Slack
- Feishu
- DingTalk
- GitHub (Comment on Issue)
- Telegram
- AWS SES
- Postmark
- SendGrid
curl -sSL https://gobackup.github.io/install | sh
after that, you will get /usr/local/bin/gobackup
command.
brew install gobackup
$ gobackup -h
NAME:
gobackup - Backup your databases, files to FTP / SCP / S3 / GCS and other cloud storages.
USAGE:
gobackup [global options] command [command options] [arguments...]
VERSION:
1.3.0
COMMANDS:
perform
start Start as daemon
run Run GoBackup
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--help, -h show help (default: false)
--version, -v print the version (default: false)
GoBackup will seek config files in:
- ~/.gobackup/gobackup.yml
- /etc/gobackup/gobackup.yml
Example config: gobackup_test.yml
models:
gitlab_app:
databases:
gitlab_db:
type: postgresql
database: gitlab_production
username: gitlab
password:
gitlab_redis:
type: redis
mode: sync
rdb_path: /var/db/redis/dump.rdb
invoke_save: true
storages:
s3:
type: s3
bucket: my_app_backup
region: us-east-1
path: backups
access_key_id: $S3_ACCESS_KEY_Id
secret_access_key: $S3_SECRET_ACCESS_KEY
compress_with:
type: tgz
$ gobackup perform
GoBackup built in a daemon mode, you can use gobackup start
to start it.
You can configure the schedule
for each models, it will run backup task at the time you set.
Configure your schedule in gobackup.yml
models:
my_backup:
schedule:
# At 04:05 on Sunday.
cron: "5 4 * * sun"
storages:
local:
type: local
path: /path/to/backups
databases:
mysql:
type: mysql
host: localhost
port: 3306
database: my_database
username: root
password: password
other_backup:
# At 04:05 on every day.
schedule:
every: "1day",
at: "04:05"
storages:
local:
type: local
path: /path/to/backups
databases:
mysql:
type: mysql
host: localhost
port: 3306
database: my_database
username: root
password: password
GoBackup bulit a HTTP Server for Web UI, you can start it by gobackup start
.
It also will handle the backup schedule.
$ gobackup start
2023/03/15 23:00:30 [Config] Load config from default path.
Starting API server on port http://127.0.0.1:2703
NOTE: If you wants start without daemon, use
gobackup run
instead.
Now visit http://127.0.0.1:2703 you can see the Web UI:
GoBackup will handle the following signals:
HUP
- Hot reload configuration.QUIT
- Graceful shutdown.
$ ps aux | grep gobackup
jason 20443 0.0 0.1 409232800 8912 ?? Ss 7:47PM 0:00.02 gobackup run
# Reload configuration
$ kill -HUP 20443
# Exit daemon
$ kill -QUIT 20443
MIT