码迷,mamicode.com
首页 > 其他好文 > 详细

rsync 推送简单配置

时间:2016-08-15 22:40:47      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:rsync

安装xinetd , 修改rsync配置

    a. yum install xinetd

    b. vi /etc/xinetd.d/rsync 

service rsync
{
        disable = no  # 将 yes 修改为 no         flags           = IPv6
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/bin/rsync
        server_args     = --daemon
        log_on_failure  += USERID
}

    c. /etc/init.d/xinetd start

    d. vim /etc/rsyncd.conf 

     添加内容(注意删除注释)

port=873  端口号
uid = nobody 用户
gid = nobody 用户组
user chroot = no
max connections = 200
timeout = 600
pid file = /var/run/rsyncd.pidlock file = /var/run/rsyncd.locklog file = /var/log/rsyncd.log

[test]  模块名称
path = /www/test  对应的目录
ignore errors
read only = no
list = no
auth users = root
secrets file = /etc/rsyncd.secrets 密码文件

    e. vi /etc/rsyncd.secrets  编写密码文件,并且修改文件为只读

root:123456789

     f. 创建对应目录,修改文件属主

    mkdir /www/test

    chown nobody.nobody -R /www/test

   g. 启动服务

    rsync --daemon


客户端配置:

a . 客户端默认安装了rsync,没有的话自己安装下 yum install rsync

b. 创建密码文件

    vim /etc/rsyncd.passwd 

123456789

c. 设置密码文件只读

    chmod 600 /etc/rsyncd.passwd


运行测试:  

从服务器端拉取
/usr/bin/rsync -avz --progress --password-file=/etc/rsyncd.passwd root@192.168.0.227::test /www/test

网服务器推送
/usr/bin/rsync -avz --progress --password-file=/etc/rsyncd.passwd  /www/test root@192.168.0.227::test


本文出自 “梦想照进现实” 博客,请务必保留此出处http://lookingdream.blog.51cto.com/5177800/1838673

rsync 推送简单配置

标签:rsync

原文地址:http://lookingdream.blog.51cto.com/5177800/1838673

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!