Error: bash: rsync: command not found
bash: rsync: command not found
We have faced a "command not found" error during rsync even if the command is already installed in the machine.
Then we found that the rsync command is missing in the remote server and that need to be installed in-order to resolve this problem.
Ubuntu/Debian systems,
#apt-get install rsync
CentOS/RHEL systems,
#yum install rsync
Now rsync will work without any issues.
That's all…