mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
34 lines
1009 B
Markdown
34 lines
1009 B
Markdown
# role backup-remote-to-local
|
|
|
|
## goal
|
|
This script allows to pull backups from a remote server.
|
|
|
|
## scheme
|
|
It is part of the following scheme:
|
|
![backup scheme](https://www.veen.world/wp-content/uploads/2020/12/server-backup-768x567.jpg) <br />
|
|
Further information you will find [in this blog post](https://www.veen.world/2020/12/26/how-i-backup-dedicated-root-servers/).
|
|
|
|
## debug
|
|
|
|
### live
|
|
To track what the service is doing execute one of the following commands:
|
|
|
|
#### systemctl
|
|
```bash
|
|
watch -n2 "systemctl status backup-remote-to-local.cymais.service"
|
|
```
|
|
|
|
#### journalctl
|
|
```bash
|
|
journalctl -fu backup-remote-to-local.cymais.service
|
|
```
|
|
|
|
### history
|
|
```bash
|
|
sudo journalctl -u backup-remote-to-local
|
|
```
|
|
|
|
## see
|
|
- https://superuser.com/questions/363444/how-do-i-get-the-output-and-exit-value-of-a-subshell-when-using-bash-e
|
|
- https://gist.github.com/otkrsk/b0ffd4018e8a79b9010c461af298471e
|
|
- https://serverfault.com/questions/304125/rsync-seems-incompatible-with-bashrc-causes-is-your-shell-clean |