Reputation: 59
I am running rsync process as a daemon. Rsync tool does not accept --progress
and --daemon
options together. I thought to parse the /var/log/messages
and rsyncd.log
file, is it a correct approach ? Is there any other possibility to get the current progress of the synced data ?
rsync --daemon --config="/etc/rsyncd1.conf" --address=10.2.2.3
rsync -v --progress --daemon --config="/etc/rsyncd1.conf" --address=10.2.2.3
Starting rsync [10.2.2.3]: rsync: --progress: unknown option (in daemon mode) (Type "rsync --daemon --help" for assistance with daemon mode.) rsync error: syntax or usage error (code 1) at options.c(1005) [client=3.0.6] [FAILED]
Upvotes: 2
Views: 1121