systemctl stop firewalld
setenforce 0
rpm -q rsync
vim /etc/rsyncd.conf #添加以下配置项
uid = nobody
gid = nobody
use chroot = yes #禁锢在源目录
address = 192.168.199.40 #监听地址
port 873 #监听端口 tcp/udp 873,可通过cat /etc/services | grep rsync查看
log file = /var/log/rsyncd.log #日志文件位置
pid file = /var/run/rsyncd.pid #存放进程 ID 的文件位置
hosts allow = 192.168.199.0/24 #允许访问的客户机地址
[ruyi] #共享模块名称
path = /var/www/html #源目录的实际路径
comment = Document Root of www.ruyi.com
read only = yes #是否为只读
dont compress = *.gz *.bz2 *.tgz *.zip *.rar *.z #同步时不再压缩的文件类型
auth users = ruyi #授权账户,多个账号以空格分隔
secrets file = /etc/rsyncd_users.db #存放账户信息的数据文件
###如采用匿名的方式,只要将其中的“auth users”和“secrets file”配置项去掉即可。
vim /etc/rsyncd_users.db
ruyi:123123 #无须建立同名系统用户
chmod 600 /etc/rsyncd_users.db
yum -y install httpd
chmod +r /var/www/html/
ls -ld /var/www/html/
rsync --daemon #启动 rsync服务,以独立监听服务的方式(守护进程)运行
netstat -anpt | grep rsync
kill $(cat /var/run/rsyncd.pid)
或者
rm -rf /var/run/rsyncd.pid
基本格式:rsync [选项] 原始位置 目标位置
-r:递归模式,包含目录及子目录中的所有文件
-l:对于符号链接文件任然复制为符号链接文件
-v:显示同步过程的详细信息
-z:在传输文件时进行压缩
-a:归档模式,保留文件的权限、属性等信息,等同于组合选项“-rlptgoD”
-p:保留文件的权限标记
-t:保留文件的时间标记
-g:保留文件的属组标记(仅超级用户使用)
-o:保留文件的属主标记(仅超级用户使用)
-H:保留硬连接文件
-A:保留ACL属性信息
-D:保留设备文件及其他特殊文件
–delete:产出目标位置有而原始位置没有的文件
–checksum:根据校验和(而不是文件大小、修改时间)来决定是否跳过文件
rsync -avz [email protected]::ruyi /opt #密码abc123
或者
rsync -avz rsync://[email protected]/ruyi /opt
echo "123123" > /etc/server.pass
chmod 600 /etc/server.pass
crontab -e
30 22 * * * /usr/bin/rsync -az --delete --password-file=/etc/server.pass [email protected]::ruyi /opt/
vim /etc/rsyncd.conf
......
read only = no #关闭只读,上行同步需要可以写
kill $(cat /var/run/rsyncd.pid)
或者
rm -rf /var/run/rsyncd.pid
rsync --daemon
netstat -anpt | grep rsync
chmod 777 /var/www/html/
2)调整 inotify 内核参数(在客户端执行)
cat /proc/sys/fs/inotify/max_queued_events
cat /proc/sys/fs/inotify/max_user_instances
cat /proc/sys/fs/inotify/max_user_watches
vim /etc/sysctl.conf
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576
sysctl -p
3)安装 inotify-tools(客户端)
用 inotify 机制还需要安装 inotify-tools,以便提供 inotifywait、inotifywatch 辅助工具程序。
notifywait:可监控modify(修改)、create(创建)、move(移动)、delete(删除)、attrib(属性更改)等各种事件,一有变动立即输出结果。
inotifywatch:可用来收集文件系统变动情况,并在运行结束后输出汇总的变化情况。
yum -y install gcc gcc-c++ make
tar zxvf inotify-tools-3.14.tar.gz -C /opt/
cd /opt/inotify-tools-3.14
./configure
make && make install
4)执行“inotifywait”命令,然后在另一个终端向/var/www/html (客户端)
目录下添加文件、移动文件,跟踪屏幕输出结果。
inotifywait -mrq -e modify,create,move,delete /var/www/html
#选项“-e”:用来指定要监控哪些事件
#选项“-m”:表示持续监控
#选项“-r”:表示递归整个目录
#选项“-q”:简化输出信息
5)在另外一个终端编写触发式同步脚本
vim /opt/inotify.sh
#!/bin/bash
INOTIFY_CMD="inotifywait -mrq -e modify,create,attrib,move,delete /var/www/html/"
RSYNC_CMD="rsync -azH --delete --password-file=/etc/server.pass /var/www/html/ [email protected]::ruyi/"
$INOTIFY_CMD | while read DIRECTORY EVENT FILE
##while判断是否接收到监控记录
do
if [ $(pgrep rsync | wc -l) -le 0 ] ; then
$RSYNC_CMD
fi
done
6)赋权
chmod +x /opt/inotify.sh
chmod 777 /var/www/html/
chmod +x /etc/rc.d/rc.local
echo '/opt/inotify.sh' >> /etc/rc.d/rc.local #加入开机自动执行