Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I’m having issues getting this to work. I tried sending to /root/ and also to a different user. When I send to root, I get this error:
rsync: change_dir#1 “/root/” failed: Permission denied (13)
When I try to send it to user@IP it thinks I’m sending it locally and creates a directory on my machine. So I tried sending it to: ssh://user@IP and also tried ssh://IP:/root/ – in both cases, it seems to get stuck. No errors, just stuck. Any suggestions on what to try next are appreciated in advance!
Here’s the command I’m running in trying to send it to root:
rsync -avz -e “ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null” --progress ~/rocktree/dev/apps/countdown-timer/index.php 192.81.208.45:/root/
And here is the full error:
rsync: change_dir#1 “/root/” failed: Permission denied (13) rsync error: errors selecting input/output files, dirs (code 3) at main.c(562) [Receiver=3.0.9] rsync: connection unexpectedly closed (8 bytes received so far) [sender] rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-42/rsync/io.c(452) [sender=2.6.9]
To be able to upload to /root, you have to connect as root:
rsync -avz -e “ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null” --progress ~/rocktree/dev/apps/countdown-timer/index.php root@192.81.208.45:/root/
how to run rsync over ssh in a crontab… im having this problem …do you have any suggestions ?? i gave full path to rsync ,ssh etc etc …the script works fine when executed but when place in crontab i doesnt work at all.