<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; cwRsync</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/cwrsync/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Wed, 01 Apr 2026 08:27:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows Server 2003下cwRsyncServer服务端与cwRsync客户端数据同步实例教程</title>
		<link>https://www.osyunwei.com/archives/4678.html</link>
		<comments>https://www.osyunwei.com/archives/4678.html#comments</comments>
		<pubDate>Sat, 07 Jul 2012 03:20:46 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[cwRsync]]></category>
		<category><![CDATA[cwRsyncServer]]></category>
		<category><![CDATA[Windows Server 2003]]></category>
		<category><![CDATA[数据同步]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=4678</guid>
		<description><![CDATA[说明： cwRsyncServer服务端   IP：192.168.21.128 cwRsync客户端   IP：192.168.21.129 实现目的： 把服务端D:\data目录中的数据通过任务计划定期同步到客户端D:\data目录中 附件： cwRsyncServer下载地址： http://jaist.dl.sourceforge.net/project/sereds/cwRsync/4.0.3/cwRsyncServer_4.0.3_Installer.zip cwRsync下载地址： http://jaist.dl.sourceforge.net/project/sereds/cwRsync/4.0.3/cwRsync_4.0.3_Installer.zip 具体操作： 一、在服务端安装cwRsyncServer 解压cwRsyncServer_4.0.3_Installer.zip，双击cwRsyncServer_4.0.3_Installer.exe 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 Next I Agre（同意） 安装路径，默认即可 Next Service account：SvcCWRSYNC    （新建的一个系统账户） Type password：密码 Confirm password：密码 备注：系统会自动创建一个账户：SvcCWRSYNC来运行cwRsyncServer服务端程序 以上信息默认即可 Install （安装） Close（关闭），安装完成 开始-设置-控制面板-管理工具-服务 找到RsyncSever选项，双击打开 启动类型：自动 点“启动” 服务启动成功，点关闭 确定 打开D盘，右键单击data文件夹，选择属性，切换到安全选项，点添加 输入：SvcCWRSYNC 确定 允许所有权限 应用，确定 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 打开C:\Program Files\ICW目录 用记事本打开rsyncd.conf，修改添加以下内容（修改之前先备份文件为rsyncd.confbak） uid = 0 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/4678.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/4678.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS Rsync服务端与Windows cwRsync客户端实现数据同步</title>
		<link>https://www.osyunwei.com/archives/3769.html</link>
		<comments>https://www.osyunwei.com/archives/3769.html#comments</comments>
		<pubDate>Sun, 06 May 2012 05:24:34 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[cwRsync]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3769</guid>
		<description><![CDATA[说明： 1、Rsync服务端 系统：CentOS 5.5 IP地址：192.168.21.160 数据存放目录：/data/osyunwei 2、cwRsync客户端 系统：Windows Server 2003 IP地址：192.168.21.130 同步的目录：D:\osyunwei 实现目的： cwRsync客户端每天凌晨3:00钟自动同步Rsync服务端/data/osyunwei目录中的数据到D:\osyunwei目录 一、Rsync服务端配置 1、关闭SELINUX vi /etc/selinux/config #编辑防火墙配置文件 #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq #保存，关闭 shutdown -r now #重启系统 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 2、开启防火墙tcp 873端口（Rsync默认端口） vi /etc/sysconfig/iptables #编辑防火墙配置文件 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 873 -j ACCEPT :wq! #保存 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3769.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3769.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Server Rsync服务端与Windows cwRsync客户端实现数据同步</title>
		<link>https://www.osyunwei.com/archives/3516.html</link>
		<comments>https://www.osyunwei.com/archives/3516.html#comments</comments>
		<pubDate>Fri, 13 Apr 2012 10:06:19 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[cwRsync]]></category>
		<category><![CDATA[Ubuntu Server]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3516</guid>
		<description><![CDATA[说明： 1、Rsync服务端 系统：Ubuntu Server 11.10 IP地址：192.168.21.168 数据存放目录：/home/mysql_data 2、cwRsync客户端 系统：Windows Server 2003 IP地址：192.168.21.130 同步的目录：D:\mysql_data 实现目的： cwRsync客户端每天凌晨3:00钟自动同步Rsync服务端/home/mysql_data目录中的数据到D:\mysql_data目录 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 一、Rsync服务端配置 1、开启防火墙tcp 873端口（Rsync默认端口） 说明：Ubuntu默认安装是没有开启任何防火墙的，为了服务器的安全，建议大家安装启用防火墙设置，这里推荐使用iptables防火墙。 whereis iptables #查看系统是否安装防火墙 iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz #表示已经安装iptables防火墙 apt-get install iptables #如果默认没有安装，请运行此命令安装防火墙 iptables -L #查看防火墙配置信息，显示如下： Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3516.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3516.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
