Hello,
I read a maximum threads I could on that subjects without any success.
Here is what I have
- Drobo (v? do not know how to confirm the version I guess it is a v2)
- DroboShare
Here is what I want
- Use the drobo/droboshare to backup 3 linux remote servers
Here is what I did
- uploaded latest firmware as of today both for drobo/droboshare/dashboard
- uploaded DroboApps
- uploaded Dropbear http://www.drobospace.com/forums/ddc/downloads/dropbear.tgz
- uploaded rsync http://www.drobospace.com/forums/ddc/downloads/rsync.tgz
- uploaded darfs http://drobo-utils.sourceforge.net/
I modified the /mnt/DroboShares/Drobo/DroboApps/rsync/rsyncd.conf
uid = root
gid = root
pid file = /var/run/rsyncd.pid
[drobo0]
path = /mnt/DroboShares/Drobo
comment = Drobo Share
read only = false
[drobo1]
path = /mnt/DroboShares/Drobo1
comment = Drobo Share
read only = false
I modified the /mnt/DroboShares/Drobo/DroboApps/rsync/rsync-start.sh
#!/bin/sh
#APP_DIR=$3
APP_DIR=/mnt/DroboShares/Drobo/DroboApps/rsync
nohup $APP_DIR/rsync --daemon --config=$APP_DIR/rsyncd.conf --log-file=$APP_DIR/rsyncd.log > /dev/null &
I exported the ./DroboApps/rsync/ and darfs ./slash/usr/bin to the current ${PATH}
From the droboshare I can now
rsync -avh remoteserver:/home/mylogin/testdrobo /mnt/DroboShares/Drobo/localtest
But I need to provide the remote ssh login pass manually.
How can I automatically rsync to any of my remote servers ?
Thank you,