Setup a Remotely Accessible rsync Server: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * rsync =Overview= =Procedure= ==SELinux Configuration== rsync may interact with SELinux and fail operations that otherwise would succeed. A...") |
No edit summary |
||
Line 19: | Line 19: | ||
setsebool -P rsync_full_access=on | setsebool -P rsync_full_access=on | ||
The change survives reboot. | The change survives reboot. For more details, see: {{Internal|SELinux_Operations#Changing_SELinux_Policy_Booleans_at_Runtime|Changing SELinux Policy Booleans at Runtime}} |
Revision as of 05:15, 27 December 2018
Internal
Overview
Procedure
SELinux Configuration
rsync may interact with SELinux and fail operations that otherwise would succeed. A typical symptom is not to be able to create a directory:
The solution is to:
setsebool -P rsync_full_access=on
The change survives reboot. For more details, see: