实现linux作为server时与windows间的数据同步

简介:
1、准备机器,此时使用linux作为server 
server---10.0.0.13    (linux) 
client---172.168.32.9 (windows) 
 
2、安装与配置linux主机的rsync 
SERVER端 
--------------------------------- 
#rpm -qa |grep rsync                  #检查系统是否安装(默认一般都已安装) 
#service iptables stop 
#vim /etc/rsyncd.conf                 #如果不存在,直接用VI新建 
添加: 
################################# 
uid = root 
gid = root 
use chroot = no 
max connections = 200 
timeout = 600 
pid file = /var/run/rsyncd.pid 
lock file = /var/run/rsync.lock 
log file = /var/log/rsyncd.log 
[backup] 
path = /backup/ 
ignore errors 
read only = false 
list = false 
hosts allow = 172.168.32.0/24 
hosts deny = 0.0.0.0/32 
auth users = rsync_backup 
secrets file = /etc/rsync.password 
################################### 
mkdir /backup  
chmod -R 777 /backup                              #新建目录backup及给予权限 
echo "rsync_backup:elain" >/etc/rsync.password    #配置帐号及密码 
chmod 600 /etc/rsync.password                     #配置rsync.passwd文件权限 
cat /etc/rsync.password 
 
#echo "/usr/bin/rsync --daemon">>/etc/rc.local    #设置为开机自启动 
#pkill rsync                         
 
#rsync --daemon                     #重启rsync服务 
#ps -ef |grep rsync                 #检查启动是否正常 
 
 
3、配置windows的rsync客户端  
(1)安装client端的rsync包 
下载 cwRSYNC 2.0 WINDOWS客户端

点击安装 
 
批处理脚本: 
################################ 
@echo off 
title  同步NEWS帐号 BY:dingtm 
cd C:\Program Files\cwRsync\bin 
rsync -vzrtopg --progress --delete dtm@10.0.0.13::backup /tmp 
 
echo 同步完成 
pause 

################################



本文转自 elain2012 51CTO博客,原文链接:http://blog.51cto.com/elain/616388

相关文章
|
1月前
|
Ubuntu 安全 Linux
|
6天前
|
网络安全 Windows
Windows server 2012R2系统安装远程桌面服务后无法多用户同时登录是什么原因?
【11月更文挑战第15天】本文介绍了在Windows Server 2012 R2中遇到的多用户无法同时登录远程桌面的问题及其解决方法,包括许可模式限制、组策略配置问题、远程桌面服务配置错误以及网络和防火墙问题四个方面的原因分析及对应的解决方案。
|
11天前
|
监控 安全 网络安全
Windows Server管理:配置与管理技巧
Windows Server管理:配置与管理技巧
41 3
|
15天前
|
存储 安全 网络安全
Windows Server 本地安全策略
由于广泛使用及历史上存在的漏洞,Windows服务器成为黑客和恶意行为者的主要攻击目标。这些系统通常存储敏感数据并支持关键服务,因此组织需优先缓解风险,保障业务的完整性和连续性。常见的威胁包括勒索软件、拒绝服务攻击、内部威胁、恶意软件感染等。本地安全策略是Windows操作系统中用于管理计算机本地安全性设置的工具,主要包括用户账户策略、安全选项、安全设置等。实施强大的安全措施,如定期补丁更新、网络分段、入侵检测系统、数据加密等,对于加固Windows服务器至关重要。
|
1月前
|
数据安全/隐私保护 Windows
安装 Windows Server 2019
安装 Windows Server 2019
|
1月前
|
网络协议 Windows
Windows Server 2019 DHCP服务器搭建
Windows Server 2019 DHCP服务器搭建
|
1月前
|
网络协议 定位技术 Windows
Windows Server 2019 DNS服务器搭建
Windows Server 2019 DNS服务器搭建
|
30天前
|
Linux 网络安全 虚拟化
适用于Linux的Windows子系统(WSL1)的安装与使用记录
并放到启动文件夹,就可以开机自动启动了。
48 0
|
1月前
|
安全 网络协议 数据安全/隐私保护
Windows Server 2019 搭建并加入域
Windows Server 2019 搭建并加入域
|
1月前
|
网络协议 文件存储 Windows
Windows Server 2019 FTP服务器搭建
Windows Server 2019 FTP服务器搭建
下一篇
无影云桌面