首页 > 代码库 > rsync 推送简单配置
rsync 推送简单配置
服务端配置:
1、安装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.pid lock file = /var/run/rsyncd.lock log 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
rsync 推送简单配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。