一.服务端设置 安装rsync服务 [root@backup ~]# yum install -y rsync 修改配置文件 [root@backup ~]# vim /etc/rsyncd.conf ## 指定进程启动uid uid = rsync ## 指定进程启动gid gid = rsync ...
分类:
其他好文 时间:
2020-07-10 13:17:40
阅读次数:
72
-R --relative 把全路径拷贝到目标,把上级目录的全路径拷贝 不管加不加/ 都会讲源数据路径一起同步 通过--daemon方式pull,似乎只能复制文件,不能复制目录,-R选项无效但是--daemon方式push,/是文件 不带/ 是目录 -R是全路径 rsyncd.conf motd f ...
分类:
其他好文 时间:
2020-07-08 09:12:42
阅读次数:
77
一、linux服务端:
iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 873 -j ACCEPT
iptables -A INPUT -p tcp --dport 873 -j ACCEPT
vim /etc/rsyncd.paswd #少一个s
rsyncer:123
chmod ...
分类:
其他好文 时间:
2020-05-23 09:39:53
阅读次数:
93
环境: 操作系统 Centos 7.6 服务端 192.168.11.60 客户端 192.168.11.61 服务端: centos7 自带rsync,如果没有安装的话;yum install -y rsync 1、打开配置文件: vim /etc/rsyncd.conf# /etc/rsyncd ...
分类:
其他好文 时间:
2020-05-18 19:02:50
阅读次数:
62
① 守护进程多模块功能配置 第一步:修改服务端rsync配置文件,添加新的模块 [root@backup ~]# vim /etc/rsyncd.conf [backup] comment = "backup dir by oldboy" path = /backup [nfs] path = /n ...
分类:
其他好文 时间:
2020-05-09 17:07:53
阅读次数:
70
服务端:rsyncd.conf配置 [root@server2 ~]# cat /etc/rsyncd.conf log file = /var/log/rsyncd.log pidfile = /var/run/rsyncd.pidlock file = /var/run/rsync.lockse ...
分类:
其他好文 时间:
2020-02-29 22:34:01
阅读次数:
86
rsync_server配置文件路径/etc/rsyncd/rsyncd.conf 配置项详解: pid file:pid文件路径 port:rsync服务器监听端口 address:rsync服务器监听地址。 fake super:老版本需要加这个配置,不然启动会报错。 read only:是否为 ...
分类:
其他好文 时间:
2020-02-23 18:40:44
阅读次数:
91
1 #!/bin/bash 2 yum -y install rsync >/dev/null 3 cat >/etc/rsyncd.conf<<EOF 4 #全局配置 5 uid = root 6 gid = root 7 use chroot = no 8 max connections = 2 ...
分类:
其他好文 时间:
2020-02-14 18:55:48
阅读次数:
89
一 .服务端 1 更改配置文件 [root@ localhost ~]# vim /etc/rsyncd.conf #全局配置 uid = root gid = root use chroot = no max connections = 200 timeout = 300 pid file = / ...
分类:
其他好文 时间:
2020-02-14 16:41:53
阅读次数:
75
rsync 报错 "auth failed on module xxx", 一般有三种情况造成:密码文件格式错误:服务端密码文件的格式是:user:password每个一行密码文件权限错误密码文件的权限应该是600rsync 配置错误主要集中在注释这一块, man 5 rsyncd.conf 有两句... ...
分类:
其他好文 时间:
2020-02-09 22:09:56
阅读次数:
64