Other Articles

Servers – Ensure Rsync Service is Disabled

Support > Fixing Checks > Server

06 March, 2026

This check ensures that the rsync service is disabled on the server.

The rsync service can expose systems to security risks as it may allow unencrypted data transfer over the network.

Check Details

  • Resource: Server
  • Check: Ensure rsync service is not enabled
  • Risk: Unencrypted communication can lead to data exposure and unauthorized file transfers.

Remediation Steps

  1. Open a terminal session with root or sudo privileges.
  2. Verify whether the rsync service is enabled:

    systemctl is-enabled rsyncd
    
  3. Ensure the output is disabled. If it shows enabled, proceed to disable the service.
  4. Disable and stop the rsync service:

    sudo systemctl --now disable rsyncd
    
  5. Verify that the service is disabled:

    systemctl is-enabled rsyncd
    
  6. For systems where /etc is stateless (e.g., Container-Optimized OS), ensure this configuration is applied after every reboot.
  7. Perform regular audits to ensure the rsync service remains disabled.