Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
I wanted to rsync from my DLink DNS323 NAS to Intel SS4000-E NAS.
I had configure all the necessary certificate and it is working properly.
When I run the rsync via the DNS323 telnet session and it works perfectly.
Here is the parameter:
/mnt/HD_a2/ffp/bin/rsync -rlptDv --delete -e ssh /mnt/HD_b2/ root@192.168.34.211:/nas/NASDisk-00008/SyncNAS/
This is the parameter I schedule it via crontab. I did tried using the -u root command too.
45 3 * * * /mnt/HD_a2/ffp/bin/rsync -rlptDv --delete -e ssh /mnt/HD_b2/ root@192.168.34.211:/nas/NASDisk-00008/SyncNAS/ > /mnt/HD_a2/ffp/log/rsync.intel.last.log 2>&1
And here is the error from the rsync.intel.last.log
rsync: Failed to exec ssh: No such file or directory (2)
rsync error: error in IPC code (code 14) at pipe.c(84) [sender=3.0.5]
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in IPC code (code 14) at io.c(600) [sender=3.0.5]
Please suggest any solution to make rsync work via crontab.
Offline
Problem resolved by giving pull path to the SSH
45 3 * * * /mnt/HD_a2/ffp/bin/rsync -rlptDv --delete -e /mnt/HD_a2/ffp/bin/ssh /mnt/HD_b2/ root@192.168.34.211:/nas/NASDisk-00008/SyncNAS/ > /mnt/HD_a2/ffp/log/rsync.intel.last.log 2>&1
Offline