숀패밀리

lsync 사용하기

· 14년 전 · 1594
요구환경 
 
kernel 2.6.13 이상 버전
rsync package
libxml2 package
libxml2-devel package
lsync 사용법

lsyncd [OPTION]... [SOURCE] [TARGET 1] [TARGET 2] ...
[SOURCE] => 동기화시 원본이 존제하는 위치 /home/test/
[TARGET X] => 동기화가 필요한 서버 192.168.0.3::HOME/test
[OPTION]
--binary FILE rsync 실행 파일 위치
--conf FILE 실행시 로드할 설정 파일명 (DEFAULT: /etc/lsyncd.conf.xml)
--debug 디버그를 위한 로그
--exclude-from FILE 동기화시 제외시킬 패턴의 옵섭
--logfile FILE 로그 파일위치
--no-daemon 포그라운드로 실행 시킴
--pidfile FILE pid 파일 생성위치


설정방법

슬레이브 서버

rsyncd를 서비스에 추가시켜 rsync접속이 가능하도록 한다

/etc/rsyncd.conf -->

[HOME]
path = /home/test
uid = root
gid = root
use chroot = yes
read only = no                      # 마스터에서 배포시 쓰기가 가능해야 한다
max connections = 4
hosts allow = 192.168.0.1         # 마스터 서버에서만 접속이 가능하도록 설정


위와 같이 마스터서버에서만 rsync 데몬만 이용할수있도록 하며 마스터에서 파일을 슬레이브로 쓰는 형태이므로 쓰기원한을 주어야한다

세팅후 rsync 데몬을 시작한다 .


마스터 서버

데몬 직접 띄우기
# lsyncd /home/test/ 192.168.0.3::HOME/test

설정파일을 이용하여 실행시키기
/etc/lsyncd.conf.xml 파일을 생성하여

<lsyncd version="1">
  <settings>
    <logfile      filename="/var/log/lsyncd"/>
    <binary       filename="/usr/bin/rsync"/>
    <callopts>
      <option text="-az%r"/>
      <option text="--delete"/>
    </callopts>
  </settings>
  <directory>
    <source path="/home/test/"/>
    <target path="192.168.0.2::HOME/"/>
  </directory>
</lsyncd>

설정 파일을 작성하고

/etc/rc.d/init.d/lsyncd 파일을 생성하여

#!/bin/bash
# description: lsyncd auto start script

start() {
  pid=`pidof lsyncd`
  if [ $? -eq 0 ]; then
    echo "lsyncd (pid $pid) is running..."
    echo " "
  else
    echo "Starting lsyncd..."
    echo " "
    /usr/bin/lsyncd
  fi
}


stop() {
  echo "Stopping lsyncd..."
  echo " "

   /bin/kill -9 `/sbin/pidof lsyncd`
   until [ -z $(/sbin/pidof lsyncd) ]; do :; done
}

case "$1" in
  start)
    start
    ;;
  stop)
    stop
    ;;
  restart)
    stop
    start
    ;;
  status)
    pid=`pidof lsyncd`
    if [ $? -eq 0 ]; then
      echo "lsyncd (pid $pid) is running..."
      echo " "
    else
      echo "lsyncd is not running"
      echo " "
    fi
  ;;
  *)
  echo "Usage: lsyncd {start|stop|restart|status}"
  exit 1
esac

exit $?


/etc/rc.d/init.d/lsyncd start를 하게 되면 실행된다
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 3,841
14년 전 조회 1,661
14년 전 조회 2,156
14년 전 조회 1,788
14년 전 조회 1,614
14년 전 조회 4,107
14년 전 조회 3,109
14년 전 조회 2,694
14년 전 조회 2,619
14년 전 조회 1,396
14년 전 조회 2,159
14년 전 조회 1,408
14년 전 조회 1,421
14년 전 조회 1,473
14년 전 조회 1,895
14년 전 조회 1,894
14년 전 조회 2,542
14년 전 조회 1,697
14년 전 조회 1,945
14년 전 조회 2,135
14년 전 조회 2,109
14년 전 조회 1,496
14년 전 조회 2,652
14년 전 조회 1,833
14년 전 조회 2,124
14년 전 조회 1,910
14년 전 조회 2,253
14년 전 조회 2,357
14년 전 조회 1,783
14년 전 조회 2,004
14년 전 조회 2,247
14년 전 조회 2,375
14년 전 조회 1,719
14년 전 조회 1,874
14년 전 조회 2,565
14년 전 조회 3,660
14년 전 조회 2,915
14년 전 조회 2,979
14년 전 조회 2,436
14년 전 조회 2,230
14년 전 조회 2,115
14년 전 조회 1,873
14년 전 조회 1,387
14년 전 조회 2,286
14년 전 조회 5,387
14년 전 조회 2,255
14년 전 조회 2,041
14년 전 조회 1,532
14년 전 조회 1,775
14년 전 조회 1,595
14년 전 조회 1,457
14년 전 조회 1,567
14년 전 조회 1,532
14년 전 조회 1,499
14년 전 조회 2,338
14년 전 조회 1,672
14년 전 조회 1,550
14년 전 조회 1,475
14년 전 조회 1,558
14년 전 조회 1,859
14년 전 조회 1,772
14년 전 조회 2,367
14년 전 조회 1,959
14년 전 조회 4,427
14년 전 조회 1,669
14년 전 조회 2,223
14년 전 조회 1,943
14년 전 조회 3,679
14년 전 조회 3,308
14년 전 조회 1,461
14년 전 조회 2,533
14년 전 조회 1,502
14년 전 조회 3,315
14년 전 조회 2,871
14년 전 조회 1,464
14년 전 조회 6,581
14년 전 조회 1,833
14년 전 조회 2,378
14년 전 조회 2,153
14년 전 조회 2,066
14년 전 조회 2,068
14년 전 조회 2,079
14년 전 조회 1,910
14년 전 조회 2,265
14년 전 조회 2,642
14년 전 조회 1,666
14년 전 조회 2,059
14년 전 조회 3,067
14년 전 조회 2,924
14년 전 조회 1,910
14년 전 조회 2,381
14년 전 조회 4,873
14년 전 조회 1,593
14년 전 조회 3,588
14년 전 조회 2,327
14년 전 조회 2,796
14년 전 조회 2,008
14년 전 조회 1,779
14년 전 조회 1,773
14년 전 조회 1,910