rsync daemon in CentOS 8

Apparently, the team behind the CentOS 8 decided to split the rsync functionality to two packages – one for the client-side and for the server-side, despite the binary rsync is only one and offers the client-size and server-side.

So there two packages in CentOS 8:

side up and running.

Just create yourself the configuration “/etc/rsyncd.conf” file.

Install the rsync program – the client and the daemon

Install the configuration and systemd files

rsync and rsync-daemon files

The files included in the two packages:

1

1

1

dnf install rsync-daemon

dnf install rsync

rsync --daemon --config=/etc/rsyncd.conf

[root@mail ~]#   systemctl enable --now rsyncd

Created symlink /etc/systemd/system/multi-user.target.wants/rsyncd.service → /usr/lib/systemd/system/rsyncd.service.

[root@mail ~]#   systemctl start rsyncd.service

[root@mail ~]#   systemctl restart rsyncd.service

0--------------------------------