• rsync+inotify


    简介:这是rsync+inotify的详细页面,介绍了和php,有关的知识、技巧、经验,和一些php源码等。

    class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=335097' scrolling='no'>

    http://code.google.com/p/sersync/



    rsync配置简单,通过脚本执行客户端命令可以实现自动同步功能,但是无法做到实时同步,接下来会介绍两个可以实时同步的。



    lsync是google开源组织开发一款开源软件工具,可以针对rsync实时监听,对数据做任何修改操作就可以及时的同步数据。不同的是,rsync是客户端将服务器上的数据同步过来,而lsync是将本机的相关目录上的数据同步推送到rsync服务端的目录下。



    Inotify 是文件系统事件监控机制,作为 dnotify 的有效替代。dnotify 是较早内核支持的文件监控机制。Inotify 是一种强大的、细粒度的、异步的机制,它满足各种各样的文件监控需要,不仅限于安全和性能。



    总结:总体上来说,这几种方式的同步,rsync、rsync+lsync配置简单,部署简单,但是rsync不能够做到实施同步,而rsync+lsync在排除非同步文件时候有点问题(暂未找到解决方法),rsync+inotify的启动靠编写脚本去监听并且同步数据。


    ===================rsync
    主:192.168.93.129
    从:192.168.93.133



    http://rsync.samba.org/ftp/rsync/

    ---------主:

    wget http://rsync.samba.org/ftp/rsync/rsync-3.0.8.tar.gz

    ./configure --prefix=/usr/local/rsync



    在/etc/目录下创建配置文件rsycnd.conf


    pid file = /var/run/rsyncd.pid
    port = 873
    uid = root
    gid = root
    use chroot = yes
    read only = yes

    hosts allow=192.168.93.133/255.255.255.0
    hosts deny=*

    max connections = 5
    motd file = /etc/rsyncd.motd

    log file = /var/log/rsyncd.log
    log format = %t %a %m %f %b
    syslog facility = local3
    timeout = 300

    [tmp]
    path = /tmp
    list=yes
    ignore errors
    auth users = rsyncuser
    secrets file = /etc/rsyncd.secrets
    comment = pics www



    在/etc/目录下创建文件,rsyncd.motd:记录客户端连接服务端时给客户的文字信息提示。eg:Welcome to use the rsync server
    在/etc/目录下创建文件 rsyncd.secrets:记录客户端连接所需要的用户密码,格式 用户名:密码。
    eg:rsyncuser:maos1213


    chmod 600 /etc/rsyncd.secrets

    启动rsync服务
    /usr/local/rsync/bin/rsync --daemon --config=/etc/rsyncd.conf



    Rsync 的启动
    rsycn 的启动方式有多种,我们在这里介绍以下几种:
    ●. 守护进程方式:
    /usr/local/rsync/bin/rsync --daemon
    ●.inetd方式:
    在/etc/services中加入:
    rsync 873/tcp
    然后在/etc/inetd.conf中加入:
    rsync stream tcp nowait root /usr/local/bin/rsync rsyncd --daemon
    ●.加入rc.local(FreeBSD)
    编辑/etc/rc.d/rc.local,在最后添加:
    /usr/local/bin/rsync --daemon

    验证启动是否成功
    ps -aux |grep rsync
    root 59120 0.0 0.2 1460 972 ?? Ss 5:20PM 0:00.00 /usr/local/rsync/bin/rsync �daemon

    netstat -an |grep 873
    tcp4 0 0 *.873 *.* LISTEN






    ----------------从:



    wget http://rsync.samba.org/ftp/rsync/rsync-3.0.8.tar.gz

    ./configure --prefix=/usr/local/rsync


    #vim /etc/rsync.secrets
    maos1213


    /usr/local/rsync/bin/rsync rsync://syncuser@192.168.93.129/ -------ok


    /usr/local/rsync/bin/rsync -vzrtopg --delete --progress rsyncuser@192.168.93.129::tmp /tmp2 -------ok
    输入密码:maos1213













    ---------------------不需要
    cd /usr/local/rsync/bin

    下载文件
    ./rsync -vzrtopg --progress --delete rsyncuser@67.217.170.80::tmp /tmp2

    上传文件
    ./rsync -vzrtopg --progress --delete /tmp/rsync livedoorcn@10.5.3.98::test
    ---------------






    ===========================inotify
    http://inotify-tools.sourceforge.net/

    wget http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz
    原理:使用inotify监视文件的变化,如果文件有变动,那么启动rsync,这里可以做其他引申,也可以使用该软件监视某些固定的目录,如果被监视的目录有变动,那么执行相关的指定程序,比如发mail,报警等
    缺点:此方式只适合rsync推送方式,而不是适合rsync获取方式


    服务器上安装
    安装inotify-tools时请注意自己linux的内核版本,只有2.6.13版本或以上的才可以

    ./configure
    make && make install



    查看是否支持inotify,从kernel 2.6.13开始正式并入内核,RHEL5已经支持。
    看看是否有 /proc/sys/fs/inotify/目录,以确定内核是否支持inotify
    [root@RHEL5 Rsync]# ll /proc/sys/fs/inotify
    total 0
    -rw-r--r-- 1 root root 0 Oct 9 09:36 max_queued_events
    -rw-r--r-- 1 root root 0 Oct 9 09:36 max_user_instances
    -rw-r--r-- 1 root root 0 Oct 9 09:36 max_user_watches

    安装完成




    http://www.bitscn.com/plus/view.php?aid=158600 linux inotify+rsync+ssh数据时时同步






    生成SSH KEY 让 server1 ssh访问 server2不需要密码~


    ssh-keygen -t rsa

    ludy@server1:~$ ssh-keygen
    Generating public/private rsa key pair.
    Enter file in which to save the key (/home/ludy/.ssh/id_rsa): //输入回车
    Enter passphrase (empty for no passphrase): 123123 //输入密码回车
    Enter same passphrase again: //再输入确认后回车
    Your identification has been saved in /home/ludy/.ssh/id_rsa.
    Your public key has been saved in /home/ludy/.ssh/id_rsa.pub.
    The key fingerprint is:
    f1:35:4e:88:11:f1:c4:5a:7a:c9:2a:90:d3:5e:0a:6f ludy@ludy
    The key's randomart image is:
    +--[ RSA 2048]----+
    | ++. |
    | =o. |
    | o o=o.+ |
    | = . +o++ . |
    | * oSo. . |
    | E . |
    | . . |
    | |
    | |
    +-----------------+
    3.然后把你用户目录下的 .ssh/id_rsa.pub 拷贝到 server2 的root下(我作的测试所以用的root,你最好不要用root很危险~)

    ludy@server1:~/.ssh$ scp id_rsa.pub root@192.168.93.133:~/.ssh
    拷贝过去后,进入server2 id_rsa.pub 把 名字改为 authorized_keys
    root@server2:~/.ssh$ mv id_rsa.pub authorized_keys
    root@server2:~/.ssh$ chown root:root authorized_keys //改变使用者 root
    root@server2:~/.ssh$ chmod 600 authorized_keys //改变权限


    测试scp test root@192.168.93.129:/tmp ok


    ???????现在可以在server1用密钥来登录
    [root@localhost .ssh]# ssh root@192.168.93.133
    The authenticity of host '192.168.93.129 (192.168.93.129)' can't be established.
    RSA key fingerprint is 9d:9f:5f:a2:43:61:08:af:a4:a8:b1:b4:da:d2:54:19.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added '192.168.93.129' (RSA) to the list of known hosts.
    root@192.168.93.129's password:

    OpenSSH告诉你它不知道这台主机,但是你不用担心这个问题,因为你是第一次登录这台主机。键入“yes”。这将把这台主机的“识别标记”加到“~/.ssh/know_hosts”文件中。第二次访问这台主机的时候就不会再显示这条提示信息了。




    正确:
    ssh root@192.168.93.129
    The authenticity of host '192.168.93.129 (192.168.93.129)' can't be established.
    RSA key fingerprint is 9d:9f:5f:a2:43:61:08:af:a4:a8:b1:b4:da:d2:54:19.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added '192.168.93.129' (RSA) to the list of known hosts.
    Enter passphrase for key '/root/.ssh/id_rsa':
    Enter passphrase for key '/root/.ssh/id_rsa':
    Last login: Fri Jun 10 18:51:12 2011 from 192.168.93.133











    4.在server1编写shell脚本
    vim /usr/local/rsync/inosync.sh

    #!/bin/sh
    SRC=/tmp/
    DST=root@192.168.93.133:/tmp
    INWT=/usr/local/bin/inotifywait
    RSYNC=/usr/bin/rsync

    $INWT -mrq -e create,move,delete,modify $SRC | while read D E F;do
    rsync -aHqzt $SRC $DST
    done





    我解释一下
    $INWT -mrq -e create,move,delete,modify $SRC | while read D E F;do
    rsync -aHqzt --delete $SRC $DST
    -m 是保持一直监听
    -r 是递归查看目录
    -q 是打印出事件~
    -e create,move,delete,modify
    监听 创建 移动 删除 写入 事件

    rsync -aHqzt $SRC $DST

    -a 存档模式
    -H 保存硬连接
    -q 制止非错误信息
    -z 压缩文件数据在传输
    -t 维护修改时间
    -delete 删除于多余文件



    5.测试

    ludy@server1:~$ ./inosync.sh &

    ludy@server1:~$ cd rsync

    ludy@server1:~/rsync$ touch asdfa

    在server2 机器查看

    root@server2:/home/ludy$ ls
    asdfa

    注意,可能第一次SSH 连接的时候需要输入一次密码,以后就不需要输入了~


    ssh 192.168.93.129

    Enter passphrase for key '/root/.ssh/id_rsa': ###输的是私钥的密码,而不是server端的密码###



    “rsync+inotify”的更多相关文章 》

    爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

    http://biancheng.dnbcw.info/php/335097.html pageNo:10
  • 相关阅读:
    利用python在windows环境下爬取赶集网工作信息。
    扔骰子
    python 输入英语单词,查看汉语意思
    获取指定日期的上一个月日期
    爬取代理IP,并判断是否可用。
    递归实现 十进制转换其他进制(2-16)
    特殊回文数
    python 实现无序列表
    python 实现剪刀石头布(三局两胜)
    python 实现简单语音聊天机器人
  • 原文地址:https://www.cnblogs.com/ooooo/p/2247905.html
Copyright © 2020-2023  润新知