rsync
rsync简介 rsync 是linux 系统下的数据镜像备份工具。使用快速增量备份工具Remote Sync 可以远程同步,支持本地复制,或者与其他SSH 、rsync 主机同步。
//Rsync的命令格式常用的有以下三种:
rsync [OPTION]... SRC DEST
rsync [OPTION]... SRC [USER@]HOST:DEST
rsync [OPTION]... [USER@]HOST:SRC DEST
1)拷贝本地文件。当SRC和DES路径信息都不包含有单个冒号":"分隔符时就启动这种工作模式。如:
[root@localhost ~]
anaconda-ks.cfg nohup.out
[root@localhost ~]
[root@localhost ~]
总用量 12
-rw-------. 1 root root 1284 9月 24 22:14 anaconda-ks.cfg
-rw-------. 1 root root 471 10月 11 21:27 a.sh
-rw-------. 1 root root 471 10月 11 21:27 nohup.out
[root@localhost ~]
总用量 12
67182984 -rw-------. 1 root root 1284 9月 24 22:14 anaconda-ks.cfg
67145884 -rw-------. 1 root root 471 10月 11 21:27 a.sh
67145882 -rw-------. 1 root root 471 10月 11 21:27 nohup.out
2)使用一个远程shell程序(如rsh、ssh)来实现将本地机器的内容拷贝到远程机器。当DST路径地址包 \
含单个冒号":"分隔符时启动该模式。如:
[root@localhost ~]
sending incremental file list
a.sh
sent 270 bytes received 35 bytes 55.45 bytes/sec
total size is 471 speedup is 1.54
[root@localhost ~]
total 8
-rw-------. 1 root root 1454 Aug 6 04:39 anaconda-ks.cfg
-rwxr-xr-x 1 root root 1041 Aug 8 2018 b.sh
3)使用一个远程shell程序(如rsh、ssh)来实现将远程机器的内容拷贝到本地机器。当SRC地址路径 \
包含单个冒号":"分隔符时启动该模式。如:
[root@localhost ~]
jj jjyy yy
[root@localhost ~]
receiving incremental file list
./
jj
jjyy
yy
sent 84 bytes received 211 bytes 118.00 bytes/sec
total size is 0 speedup is 0.00
[root@localhost ~]
anaconda-ks.cfg a.sh jj jjyy nohup.out yy
//rsync常用选项:
-a, --archive //归档
-v, --verbose //啰嗦模式
-q, --quiet //静默模式
-r, --recursive //递归
-p, --perms //保持原有的权限属性
-z, --compress //在传输时压缩,节省带宽,加快传输速度
--delete //在源服务器上做的删除操作也会在目标服务器上同步
rsync+inotify
名称 | 含义 |
---|
rsync | rsync 与传统的cp 、tar 备份方式相比,
rsync 具有安全性高、备份迅速、支持增量备份等优点, 通过rsync 可以解决对实时性要求不高的数据备份需求, 例如定期的备份文件服务器数据到远端服务器,对本地磁盘定期做数据镜像等。 | Inotify | Inotify 是一种强大的、细粒度的、异步的文件系统事件监控机制,
linux 内核从2.6.13 起,加入了Inotify 支持, 通过Inotify 可以监控文件系统中添加、删除,修改、移动等各种细微事件, 利用这个内核接口,第三方软件就可以监控文件系统下文件的各种变化情况, 而inotify-tools 就是这样的一个第三方软件。 |
实例演示
环境说明:
服务器类型 | IP地址 | 应用 | 操作系统 |
---|
源服务器(source) | 192.168.129.134 | rsync inotify-tools 脚本 | Redhat 8 | 目标服务器(target) | 192.168.129.135 | rsync | Redhat 8 |
需求 部署rsync+inotify同步/runtime目录至目标服务器的/NAME/下。这里的NAME是指你的名字,比如你叫tom,则要把/runtime目录同步至目标服务器的/tom/下。
目标服务器
//关闭防火墙与SELINUX
[root@target ~]
Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
[root@target ~]
[root@target ~]
//安装rsync服务端软件
[root@target ~]
//设置rsyncd.conf配置文件
[root@target ~]
log file = /var/log/rsyncd.log
pidfile = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
secrets file = /etc/rsync.pass
[runtime]
path = /hhr/
comment = sync etc from client
uid = root
gid = root
port = 873
ignore errors
use chroot = no
read only = no
list = no
max connections = 200
timeout = 600
auth users = admin
hosts allow = 192.168.129.133
hosts deny = 192.168.47.129
EOF
//创建用户认证文件
[root@target ~]
[root@target ~]
admin:123456
//设置文件权限
[root@target ~]
[root@target ~]
-rw-------. 1 root root 381 10月 11 20:35 /etc/rsyncd.conf
-rw-------. 1 root root 13 10月 11 20:38 /etc/rsync.pass
//配置rsync服务并设置开机自启动
[root@target ~]
[root@target ~]
[Unit]
Description=fast remote file copy program daemon
[Service]
User=root
Group=root
EnvironmentFile=/etc/sysconfig/rsyncd
ExecStart=/usr/bin/rsync --daemon --config=/etc/rsyncd.conf --no-detach
ExecReload=/bin/kill -HUP
KillMode=process
Restart=on-failure
RestartSec=30s
[Install]
WantedBy=multi-user.target
//启动rsync服务并设置开机自启动
[root@target ~]
Job for rsyncd.service failed because of unavailable resources or another system error.
See "systemctl status rsyncd.service" and "journalctl -xe" for details.
报错解决方法 安装rsync-daemon
[root@target ~]
[root@target ~]
Created symlink /etc/systemd/system/multi-user.target.wants/rsyncd.service → /usr/lib/systemd/system/rsyncd.service.
[root@target ~]
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
LISTEN 0 5 0.0.0.0:873 0.0.0.0:*
LISTEN 0 128 [::]:22 [::]:*
LISTEN 0 5 [::]:873 [::]:*
源服务器
//关闭防火墙与SELINUX
[root@source ~]
Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
[root@source ~]
[root@source ~]
//配置yum源
[root@source ~]
[root@source ~]
//安装epel源
[root@source ~]
//安装rsync服务端软件,只需要安装,不要启动,不需要配置
[root@source ~]
//创建认证密码文件
[root@source ~]
[root@source ~]
123456
//设置文件权限,只设置文件所有者具有读取、写入权限即可
[root@source ~]
[root@source ~]
-rw-------. 1 root root 7 10月 11 21:13 /etc/rsync.pass
测试
//在目标服务器上创建目录
[root@target ~]
//在源服务器上创建测试目录,然后在源服务器运行以下命令
[root@source ~]
[root@source ~]
[root@source runtime]
[root@source runtime]
sending incremental file list
./
jj
0 100% 0.00kB/s 0:00:00 (xfr
yy
0 100% 0.00kB/s 0:00:00 (xfr
sent 163 bytes received 65 bytes 456.00 bytes/sec
total size is 0 speedup is 0.00
//在目标服务器上查看测试结果
[root@target ~]
[root@target hhr]
jj yy
实时触发rsync进行同步
//查看服务器内核是否支持inotify
[root@source ~]
总用量 0
-rw-r--r--. 1 root root 0 10月 11 21:17 max_queued_events
-rw-r--r--. 1 root root 0 10月 11 21:17 max_user_instances
-rw-r--r--. 1 root root 0 10月 11 21:17 max_user_watches
//源服务器安装inotify-tools
[root@source ~]
//在源服务器编写同步脚本
[root@source ~]
[root@source ~]
host=192.168.129.135
src=/runtime
des=runtime
password=/etc/rsync.pass
user=admin
inotifywait=/usr/bin/inotifywait
$inotifywait -mrq --timefmt '%Y%m%d %H:%M' --format '%T %w%f%e' -e modify,delete,create,attrib $src \
| while read files;do
rsync -avzP --delete --timeout=100 --password-file=${password} $src $user@$host::$des
echo "${files} was rsynced" >>/tmp/rsync.log 2>&1
done
//启动脚本
[root@source ~]
[1] 109229
[root@source ~]
[root@source ~]
root 109229 4210 0 21:26 pts/0 00:00:00 bash /scripts/inotify.sh
root 109235 109229 0 21:26 pts/0 00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %T %w%f%e -e modify,delete,create,attrib /runtime
root 109236 109229 0 21:26 pts/0 00:00:00 bash /scripts/inotify.sh
root 110302 4210 0 21:26 pts/0 00:00:00 grep --color=auto inotify
//在源服务器上生成一个新文件
[root@source ~]
jj yy
[root@source ~]
//查看inotify生成的日志
[root@source ~]
20211011 21:27 /runtime/jjyyCREATE was rsynced
20211011 21:27 /runtime/jjyyATTRIB was rsynced
//设置监控runtime目录脚本开机自启
[root@source ~]
[root@source ~]
-rwxr-xr-x. 1 root root 474 3月 24 2020 /etc/rc.d/rc.local
[root@source ~]
[root@source ~]
touch /var/lock/subsys/local
nohup /bin/bash /scripts/inotify.sh
//在目标服务器查看脚本是否成功触发并同步了文件
[root@target hhr]
jj runtime yy
[root@target hhr]
jj jjyy yy
|