1. rsync 설치 확인
1) rsync 패키지 확인
[root@tourWeb1 ~]# rpm -qa | grep rsync |
2) rsync 패키지 없을시 yum을 통해 설치
[root@tourWeb1 ~]# yum -y install rsync |
2. Rsync 설정
1) rynsc 설정파일 작성
[root@tourWeb1 ~]# vi /etc/rsyncd.conf |
[test] |
2) xinetd rsync 설정파일 수정
[root@tourWeb1 ~]# vi /etc/xinetd.d/rsync |
service rsync |
* disable을 no 로 변경
3) xinetd 재구동
[root@tourWeb1 ~]# service xinetd restart |
3. 방화벽 오픈
1) iptables 포트규칙 추가
[root@tourWeb1 ~]# vi /etc/sysconfig/iptables |
-A INPUT -m state --state NEW -m tcp -p tcp --dport 873 -j ACCEPT |
2) iptables 재구동
[root@tourWeb1 ~]# service iptables stop |
3) SeLinux 중지 (방화벽 정책을 오픈했음에도 연결이 안될경우 해당방법 참고)
[root@tourWeb1 ~]# setenforce 0 |
SELINUX=disabled |
* SELINUX 부분을 disabled로 변경한다.
'Linux' 카테고리의 다른 글
리눅스 32비트, 64비트 확인 방법 (0) | 2014.08.19 |
---|---|
[Linux] java.net.BindException: Permission denied <null>:80 (0) | 2014.08.15 |
[CentOS] 리눅스 Java / JDK 설치 (0) | 2014.07.27 |
[CentOS]리눅스 스케줄러 crontab 사용법 (0) | 2014.07.25 |
[CentOS] 특정 프로세스 체크하기 (0) | 2014.07.25 |