标签:生成 c++ script 出现 存放位置 ogre proc 部署 图片
同步文件,多个主机。可以做图片服务同步,代码管理同步等。通过异步方式同步,监控到文件的变化。同步更新变化的内容,效率比较好。
服务类型 | IP地址 | 应用 | 操作系统 |
---|---|---|---|
源服务器 | 192.168.217.151 | rsync inotify-tools 脚本 | centos7/redhat7 |
目标服务器 | 192.168.217.150 | rsync | centos7/redhat7 |
# systemctl stop firewalld
# systemctl disable firewalld
# sed -ri ‘s/^(SELINUX=).*/\1disabled/g‘ /etc/sysconfig/selinux
# getenforce 0
#yum -y install rsync
# vim /etc/rsyncd.conf
log file = /var/log/rsyncd.log
//日志文件位置,启动rsync后自动产生,无需提前创建
pidfile = /var/run/rsyncd.pid
//pid文件存放位置
lock file = /var/run/rsync.lock
//支持max connections参数的锁文件
secrets file = /etc/rsync.pass
//用户认证配置文件,里面存放用户名称和密码,必须手动创建这个文件
[etc_from_client]
//自定义同步名称
path = /test/
//rsync服务端存放路径,客户端的数据将同步到此目录
comment = sync etc from client
uid = root
//设置rsync运行权限为root
gid = root
//设置rsync运行权限为root
port = 873
//默认端口为873
ignore errors
//表示出现错误忽视错误
use chroot = no
//默认为true ,修改为no,增加对目录软链接的备份
read only = no
//设置rsync服务端为读写权限
list = no
//不显示rsync服务端资源列表
max connections = 200
//最大连接数
timeout = 600
//设置超时时间
auth users = admin
//执行数据同步的用户名,可以设置多个,用英文逗号隔开
hosts allow = 192.168.217.151
//允许进行数据同步的IP地址,可以设置多个,用英文逗号隔开
# mkdir /test
echo ‘admin:111‘ > /etc/rsync.pass
cat /etc/rsync.pass
chmod 600 /etc/rsync*
ll /etc/rsync*
# systemctl start rsyncd
# systemctl enable rsyncd
# systemctl stop firewalld
# systemctl disable firewalld
# sed -ri ‘s/^(SELINUX=).*/\1disabled/g‘ /etc/sysconfig/selinux
# setenforce 0
yum -y install rsync
echo ‘111‘ > /etc/rsync.pass
# cat /etc/rsync.pass
# chmod 600 /etc/rsync.pass
# ll /etc/rsync.pass
rsync -avH --port 873 --progress --delete /root/etc/ admin@192.168.217.150::etc_from_client --password-file=/etc/rsync.pass
ls /
test
检查服务器内核是否支持inotify,
如果有这三个max开头的文件则表示服务器内核支持inotify
ll /proc/sys/fs/inotify/
yum -y install make gcc gcc-c++ inotify-tools
# mkdir /scripts
# touch /scripts/inotify.sh
# chmod 755 /scripts/inotify.sh
# ll
# vim /scripts/inotify.sh
host=192.168.217.150 //目标服务器的ip(备份服务器)
src=/test //在源服务器上所要监控的备份目标
des=etc_from_client //自定义的模块名,需要与目标服务器上的定义名称同步
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
//检查脚本
# bash -x /scripts/inotify.sh
//启动脚本
nohup bash /scripts/inotify.sh &
# ps -ef|grep inotify
# chmod +x /etc/rc.d/rc.local
ll /etc/rc.d/rc.local
echo ‘nohup /bin/bash /scripts/inotify.sh‘ >> /etc/rc.d/rc.local
tail /etc/rc.d/rc.local
标签:生成 c++ script 出现 存放位置 ogre proc 部署 图片
原文地址:https://www.cnblogs.com/cx558/p/9547398.html