2012. 9. 3. 15:24
Linux
[root@localhost ~]# cat /etc/redhat-release
CentOS release 5.8 (Final)
슈퍼데몬 xinetd 방식으로 돌던 rsync를 standalone방식으로 구동시켜보자.
설정파일 생성
[root@localhost ~]# cat /etc/rsyncd.conf
[test]
path = /home
comment = test
uid = root
gid = root
use chroot = yes
read only = yes
hosts allow = 111.111.111.111
max connections = 10
보안을 위한 host allow에 ip를 적어주어도 된다.
방화벽이 올라가 있다면 873포트를 열어주도록 하자.
후에 프로세스가 정상적으로 돌고 있는지 확인
[root@localhost ~]# rsyncd --daemon
[root@localhost ~]# ps aux | grep rsync
root 8248 0.0 0.0 5356 608 ? Ss 15:15 0:00 rsync --daemon
root 8401 0.0 0.0 5148 748 pts/3 S+ 15:23 0:00 grep rsyn
정상적으로 rsync가 구동되는걸 확인할 수 있다.
반응형
'Linux' 카테고리의 다른 글
2차 네임서버 업데이트설정 (0) | 2013.03.29 |
---|---|
CentOS 4.x yum 에러시 (0) | 2013.01.14 |
시스템 파티션 리마운트 (0) | 2012.09.03 |
sendmail 메일큐의 메일제목 확인 (0) | 2012.04.10 |
Spamassassin 사용하기 (0) | 2012.02.03 |