NFS 서버를 이용하지 않고, Lsync를 이용하여 각자의 서버에 data를 저장하고 동기화 할 수 있습니다. 1. 설치 서버1, 서버2 모두 진행 #yum install epel-release –y #yum install lsyncd lua rsync 서버1에서 진행 #ssh-keygen 모두 enter #ssh-copy-id –p 22 root@서버2 ip #ssh root@서버2 ip ( ssh 접속 확인 ) 패스워드 없이 접속되면 정상적으로 적용된 것 [서버2] # vi /etc/rsyncd.conf [sync] comment = sync path=/data hosts allow= 서버1 ip uid=root gid=root use chroot=yes read only=no [서버 1] #vi /..