|
|
/etc/rsync.conf
/etc/rsyncd.secretd
/etc/crontab
/backup/backup.rsync
이러한 설정들이 모두 제대로 되었는데 불구하고 백업이 되지 않는다면
다음과 같이 SeLinux를 설정 해 주면 된다.
]# getsebool -a |grep rsync --> selinux 정책 확인
allow_rsync_anon_write --> off
postgresql_can_rsync --> off
rsync_client --> off
rsync_export_all_ro --> off
rsync_use_cifs --> off
rsync_use_nfs --> off
다음과 같은 명령을 준다.
]# setsebool -P rsync_export_all_ro=1
한참 동안 잠잠하게 머물다가 에러 없이 프롬프트 떨어지면 정책 설정이 된 것이다.
이제 rsync 를 이용한 백업 기능이 제대로 잘 될 것이다.