Skip to content
Jérôme Quéré edited this page Aug 13, 2015 · 1 revision

SSH

This storage store item on a remote ssh server.

options:

  • HOST: (mandatory) The remote ssh server hostname.
  • USER: (mandatory) The user acount on the remote server.
  • SSHKEY: (mandatory) The sshkey to login on the remote ssh server.
  • BASEPATH: (mandatory) The root folder under witch all the backup will be drop.

exemple:

IB_STORAGE_ssh_TYPE="ssh"
IB_STORAGE_ssh_HOST="backup.exemple.com"
IB_STORAGE_ssh_USER="username"
IB_STORAGE_ssh_SSHKEY="/home/username/.ssh/id_rsa"
IB_STORAGE_ssh_BASEPATH="/backup" # No trailing slash

storage tree:

BASEPATH
├── task1
│   ├── date1
│   │   ├── item1
│   │   └── item2
│   └── date2
│       ├── item1
│       └── item2
└── task2
    ├── date1
    │   ├── item1
    │   └── item2
    └── date2
        ├── item1
        └── item2