目录
实验准备
192.168.88.50 #源服务器
192.168.88.51 #客户端服务器
systemctl stop firewalld
setenforce 0
rpm -q rsync #一般系统已默认安装rsync
建立/etc/rsyncd.conf 配置文件
vim /etc/rsyncd.conf #添加以下配置项
uid = root
gid = root
use chroot = yes #禁锢在源目录
address = 192.168.88.50 #监听地址
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.88.0/24 #允许访问的客户机地址
dont compress = *.gz *.bz2 *.tgz *.zip *.rar *.z #同步时不再压缩的文件类型
[yy] #共享模块名称
path = /var/www/html #源目录的实际路径
read only = yes #是否为只读
auth users = cxk #授权账户,多个账号以空格分隔
secrets file = /etc/rsyncd_users.db #存放账户信息的数据文件
#如采用匿名的方式,只要将其中的“auth users”和“secrets file”配置项去掉即可。
#为备份账户创建数据文件
vim /etc/rsyncd_users.db
cxk:123 #无须建立同名系统用户
chmod 600 /etc/rsyncd_users.db
#保证所有用户对源目录/var/www/html 都有读取权限
chmod +r /var/www/html/
ls -ld /var/www/html/
#启动 rsync 服务程序
rsync --daemon #启动 rsync 服务,以独立监听服务的方式(守护进程)运行
netstat -anpt | grep rsync
#关闭 rsync 服务
kill $(cat /var/run/rsyncd.pid)
rm -rf /var/run/rsyncd.pid
基本格式:rsync [选项] 原始位置 目标位置
常用选项 | 解释 |
---|---|
-r | 递归模式,包含目录及子目录中的所有文件 |
-l | 对于符号链接文件仍然复制为符号链接文件 |
-v | 显示同步过程的详细(verbose)信息 |
-z | 在传输文件时进行压缩(compress) |
-a | 归档模式,保留文件的权限、属性等信息,等同于组合选项“-rlptgoD” |
-p | 保留文件的权限标记 |
-t | 保留文件的时间标记 |
-g | 保留文件的属组标记(仅超级用户使用) |
-o | 保留文件的属主标记(仅超级用户使用) |
-H | 保留硬连接文件 |
-A | 保留 ACL 属性信息 |
-D | 保留设备文件及其他特殊文件 |
--delete | 删除目标位置有而原始位置没有的文件 |
--checksum | 根据校验和(而不是文件大小、修改时间)来决定是否跳过文件 |
#从源服务器拉数据
rsync -az --delete 源服务器位置 本地位置
#推数据到源服务器
rsync -az --delete 本地位置 源服务器位置
rsync -az --delete --password-file=密码文件 用户名@源服务器地址::共享模块名 本地目录
rsync -az --delete --password-file=密码文件 rsync://用户名@源服务器地址/共享模块名 本地目录
#为备份账户创建数据文件
vim /etc/rsyncd_users.db
123
chmod 600 /etc/rsyncd_users.db
yum install -y sshpass #首先下载配置文件
rsync -az --delete -e 'sshpass -p 'ssh密码' ssh -p ssh端口 -o StrictHostKeyChecking=no' 用户名@源服务器地址:共享目录/ 本地目录
空密码,ssh-agent bash + ssh-add
ssh-keygen -t rsa
ssh-copy-id 192.168.88.50
rsync -az --delete -e 'ssh -p ssh端口' 用户名@源服务器地址:共享目录/ 本地目录
rsync -a --delete 空目录/ 目标目录/
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/
在Linux内核中,默认的inotify机制提供了三个调控参数:max_queue_events(监控事件队列,默认值为16384)、max_user_instances(最多监控实例数,默认值为128)、max_user_watches(每个实例最多监控文件数,默认值为8192)。当要监控的目录、文件数量较多或者变化较频繁时,建议加大这三个参数的值。
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
tar -xf inotify-tools-3.14.tar.gz
cd /opt/inotify-tools-3.14
./configure
make && make install
#可以先执行“inotifywait”命令,然后另外再开启一个新终端向 /var/www/html 目录下添加文件、移动文件,在原来的终端中跟踪屏幕输出结果。
inotifywait -mrq -e modify,create,move,delete /var/www/html
#选项“-e”:用来指定要监控哪些事件
#选项“-m”:表示持续监控
#选项“-r”:表示递归整个目录
#选项“-q”:简化输出信息
vim /opt/inotify.sh
#!/bin/bash
INOTIFY_CMD="inotifywait -mrq -e modify,create,move,delete,attrib /var/www/html/"
RSYNC_CMD="rsync -azH --delete -e 'ssh' /var/www/html/ root@192.168.88.50:/data/yy"
#使用while、read持续获取监控结果,根据结果可以作进一步判断是否读取到输出的监控记录
$INOTIFY_CMD | while read event
do
echo $event
if [ $(pgrep rsync | wc -l) -le 1 ];then
#如果rsync未在执行,则立即启动
$RSYNC_CMD
fi
done
命令 | 作用 |
---|---|
git clone | 从代码仓库克隆代码到本地 |
git add | 添加文件到暂存区 |
git commit | 提交代码到本地仓库 |
git push | 推送代码到代码仓库(如github、gitee、gitlab) |
git log | 查看版本提交记录 |
git pull | 从代码仓库拉取最新代码到本地 |
git branch | 管理代码分支 |
git checkout | 切换分支 |