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

xinted结合rsync 无密码使用

时间:2016-07-14 19:38:13      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:rsync xinetd

xinted结合rsync 无密码使用

1.安装

 yum install -y xinetd rsync

2.配置

 cat /etc/xinetd.d/rsync

# default: off
# description: The rsync server is a good addition to an ftp server, as it #	allows crc checksumming etc.
service rsync
{
	disable	= no
	flags		= IPv6
	socket_type     = stream
	wait            = no
	user            = root
	server          = /usr/bin/rsync
	server_args     = --daemon
	log_on_failure  += USERID
}

 cat /etc/rsyncd.conf

uid = root
git = root
use chroot = no
max connections = 4
strict modes = yes
port = 873
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log

[backup]
path = /srv
comment = this is test
#host allow = 
read only = no

3.启动

/etc/init.d/xinetd start

4.使用

rsync -Rrav --delete /data/web/ IP::backup


本文出自 “浅浅的淡淡” 博客,请务必保留此出处http://cuixiang.blog.51cto.com/8204722/1826445

xinted结合rsync 无密码使用

标签:rsync xinetd

原文地址:http://cuixiang.blog.51cto.com/8204722/1826445

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