Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huacnlee/gobackup
🗄 CLI tool for backup your databases, files to cloud storages in schedully.
https://github.com/huacnlee/gobackup
backup cli go mysql postgresql redis
Last synced: 3 months ago
JSON representation
🗄 CLI tool for backup your databases, files to cloud storages in schedully.
- Host: GitHub
- URL: https://github.com/huacnlee/gobackup
- Owner: gobackup
- License: mit
- Created: 2017-09-06T09:14:52.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T10:56:03.000Z (6 months ago)
- Last Synced: 2024-05-23T05:28:14.339Z (6 months ago)
- Topics: backup, cli, go, mysql, postgresql, redis
- Language: Go
- Homepage: https://gobackup.github.io
- Size: 643 KB
- Stars: 1,320
- Watchers: 22
- Forks: 211
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GoBackup
CLI tool for backup your databases, files to cloud storages in schedully.
GoBackup is a backup tool design for application servers, to backup your databases, files to cloud storages (FTP, SCP, S3, GCS, Aliyun OSS ...) in schedully.
Simple, easy to use, one time setup, run years without any maintenance, low cost (recycle), secure (encrypt compress).
> Inspired by [backup/backup](https://github.com/backup/backup) and replace it for without Ruby dependency.
[![asciicast](https://asciinema.org/a/543564.svg)](https://asciinema.org/a/543564)
GoBackup 是一个为中小型服务器而设计备份工具,内置计划任务,帮你定时备份数据库、配置文件,通过导出、打包压缩,最终存储到外部云存储(如:FTP、SCP、S3、GCS、Aliyun OSS ...)。
简单易用,一次性部署后能持续运行数年无需任何维护,存储成本低(回收机制),安全可靠(加密压缩)。
> 🎈 [Ruby China](https://ruby-china.org) 的应用服务器从 GoBackup 设计之初(2017 年)开始就每日全量备份到外部的云存储,并持续数年一直默默的备份着,完全不需要维护。Aliyun OSS 上,每月成本仅为 0.2 RMB(文件回收周期为 1 个月)。
https://gobackup.github.io
## Features
- 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.### Databases
- MySQL
- PostgreSQL
- Redis
- MongoDB
- SQLite
- Microsoft SQL Server
- InfluxDB
- MariaDB
- etcd### Storages
- Local
- FTP
- SFTP
- SCP - Upload via SSH copy
- [Amazon S3](https://aws.amazon.com/s3)
- [Aliyun OSS](https://www.aliyun.com/product/oss)
- [Google Cloud Storage](https://cloud.google.com/storage)
- [Azure Blob Storage](https://azure.microsoft.com/en-us/products/storage/blobs)
- [Backblaze B2 Cloud Storage](https://www.backblaze.com/b2)
- [Cloudflare R2](https://www.cloudflare.com/products/r2)
- [DigitalOcean Spaces](https://www.digitalocean.com/products/spaces)
- [QCloud COS](https://cloud.tencent.com/product/cos)
- [UCloud US3](https://docs.ucloud.cn/ufile/introduction/concept)
- [Qiniu Kodo](https://www.qiniu.com/products/kodo)
- [Baidu BOS](https://cloud.baidu.com/product/bos.html)
- [MinIO](https://min.io)
- [Huawei OBS](https://www.huaweicloud.com/intl/en-us/product/obs.html)
- [Volcengine TOS](https://www.volcengine.com/product/tos)
- [UpYun](https://upyun.com)
- [WebDAV](http://www.webdav.org)## Notifier
> 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## Installation
```shell
curl -sSL https://gobackup.github.io/install | sh
```after that, you will get `/usr/local/bin/gobackup` command.
### Install via Homebrew
```shell
brew install gobackup
``````bash
$ 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.0COMMANDS:
perform
start Start as daemon
run Run GoBackup
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--help, -h show help (default: false)
--version, -v print the version (default: false)
```## Configuration
GoBackup will seek config files in:
- ~/.gobackup/gobackup.yml
- /etc/gobackup/gobackup.ymlExample config: [gobackup_test.yml](https://github.com/huacnlee/gobackup/blob/master/gobackup_test.yml)
```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
```## Usage
### Perform backup
```bash
$ gobackup perform
```### Backup schedule
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.
#### For example
Configure your schedule in `gobackup.yml`
```yml
models:
my_backup:
before_script: |
echo "Before script"
after_script: |
echo "After script"
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
```### Start Daemon & Web UI
GoBackup bulit a HTTP Server for Web UI, you can start it by `gobackup start`.
It also will handle the backup schedule.
```bash
$ gobackup start2023/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-webui-main](https://user-images.githubusercontent.com/5518/225351245-90ff1eab-673a-44c7-bf37-d1964af24e12.png)
![gobackup-webui-files](https://user-images.githubusercontent.com/5518/225351184-32d9ada9-2faf-45a3-a7f3-10d41feffb8c.png)### Signal handling
GoBackup will handle the following signals:
- `HUP` - Hot reload configuration.
- `QUIT` - Graceful shutdown.```bash
$ 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
```## Contributing
The [DEVELOPMENT](./DEVELOPMENT) document will help you to setup development environment, and guide you how to test them in local.
When you finish your work, please send a PR.
## License
MIT