An open API service indexing awesome lists of open source software.

https://github.com/kvaps/3par-backup

Script to backup 3par volumes
https://github.com/kvaps/3par-backup

Last synced: 8 months ago
JSON representation

Script to backup 3par volumes

Awesome Lists containing this project

README

          

# 3par-backup

Script to backing up 3par volumes

Example usage with restic:

```bash
export RESTIC_PASSWORD="aeseiNgamaiyei6Aelah"
export CMD='set -x; export RESTIC_REPOSITORY="/backups/$VV"; restic init 2>/dev/null; dd bs=4M if="$DEV" | timeout 3h restic backup --no-cache --tag="$VV" --stdin'
export JOBS=8
export FIRST_LUN=100
3par-backup 10.9.8.7 'dev.one.*.vv'
```

Also it's better to add iscsi and multipath devices to LVM filter in `/etc/lvm/lvm.conf`:

```
global_filter = [ "r|/dev/disk/by-path/ip-.*|", "r|/dev/disk/by-id/dm-uuid-.*mpath-.*|" ]
```