rsync remote command not found

Software

rsync's rather fabulous retro logo

Since moving back from Github Pages, I’ve been deploying Jekyll sites with rsync. It’s fast; doesn’t transfer unchanged assets; the usual qualities we’ve all come to expect from this excellent tool. I’m serious; from my hourly backups to site deployments and everything in between, I couldn’t imagine my life without it.

But I digress. Here’s my rsync deployment command for Jekyll, sent from my site’s Rakefile:

rsync -e 'ssh -i [private key]' --checksum --compress 
--delete --itemize-changes --recursive _site/
[user]@[machine]:[folder]

This hasn’t been a problem with my primary web host, but it generated the following error when attempting to push a Jekyll tree to our VPS:

bash: rsync: command not found
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: remote command not found (code 127) at io.c(605) [sender=3.0.9]
rake aborted!
Command failed with status (127)

I believe the word “derp” would adequately describe the issue. CentOS (and NetBSD) don’t ship with rsync by default. Installing it did the trick.

I’ve since read this doesn’t solve the problem for some people. According to Siddesh BG, the solution is to provide an absolute path to rsync on the destination host:

rsync [..] --rsync-path=/usr/local/bin/rsync [..]

Now if only I could use rsync to transfer a cake from the pastry shop down the road to my table now.

Author bio and support

Me!

Ruben Schade is a technical writer and infrastructure architect in Sydney, Australia who refers to himself in the third person. Hi!

The site is powered by Hugo, FreeBSD, and OpenZFS on OrionVM, everyone’s favourite bespoke cloud infrastructure provider.

If you found this post helpful or entertaining, you can shout me a coffee or send a comment. Thanks ☺️.