Rsync+Inotify

Rsync+Inotify

Rsync这个一般使用系统自带的服务,服务端需要启动客户端无需启动,服务端设置开机自动启动

systemctl start rsyncd    

systemctl status rsyncd

systemctl restart rsyncd

systemctl enable rsyncd

Inotify单独下载安装,在客户端安装

服务端配置文件: /etc/rsync.pass  填入账号密码格式root:password

/etc/rsyncd.conf

Vim /etc/rsyncd.conf

uid = nobody

 gid = nobody

 use chroot = yes

 max connections = 4

 pid file = /var/run/rsyncd.pid

lockfile = /var/run/rsyncd.lock

log file = /var/log/rsyncd.log

# exclude = lost+found/

# #  transfer logging = yes

# #   timeout = 900

# #    ignore nonreadable = yes

# #    # dont compress   = *.gz *.tgz *.zip *.z *.Z *.rpm *.deb *.bz2

# #

[BIM]

path = /app/services/tomcat-idp/webapps/idp/themes/default/loginimage

write only = yes

read only = no

hosts allow = *

list = yes

uid = root

gid = root

auth users = root

secrets file = /etc/rsync.pass

服务器端登陆有ip限制,如果ip变了,请更改hosts allow

客户端配置文件/etc/rsync.pass  填入账号密码格式root:password

客户端同步脚本

#!/bin/bash
src=/app/home/loginUploads/des1=*
dest2=**
deshost=***
deshost2=***
user=root
user2=root
port=873
moudle=BIM
echo "1"
inotifywait -mrq --timefmt '%d/%m/%y %H:%M' --format '%T %w %f' -e modify,delete,create,attrib $src | while read file DATE TIME DIR;
echo "3"
do
echo "1"
rsync -vzrtopg --port $port --progress --delete --password-file=/etc/rsync.pass $src  $user@$deshost::$moudle
rsync -vzrtopg --port $port --progress --delete --password-file=/etc/rsync.pass $src  $user2@$deshost2::$moudle
echo "${files} was rsynced" >> /var/log/rsync.log 2>&1
done

设置客户端开机自启动

nohup sh /app/inotify.sh &填入 /etc/rc.local

chmod 777 /etc/rc.local

Inotify说明

inotifyinotify-tools包提供。在安装inotify-tools之前,请确保内核版本高于2.6.13,且在/proc/sys/fs/inotify目录下有以下三项,这表示系统支持inotify监控

inotify-tools源码包地址:https://cloud.github.com/downloads/rvoicilas/inotify-tools/inotify-tools-3.14.tar.gz

tar xf inotify-tools-3.14.tar.gz

./configure --prefix=/usr/local/inotify-tools-3.14

make && make install

ln -s /usr/local/inotify-tools-3.14 /usr/local/inotify

其中inotifywait命令用于等待文件发生变化,所以可以可以实现监控(watch)的功能,该命令是inotify的核心命令。inotifywatch用于收集文件系统的统计数据,例如发生了多少次inotify事件,某文件被访问了多少次等等,一般用不上。

以下是inotify相关的内核参数。

(1)./proc/sys/fs/inotify/max_queued_events:调用inotify_init时分配到inotify instance中可排队的event数的最大值,超出值时的事件被丢弃,但会触发队列溢出Q_OVERFLOW事件。

(2)./proc/sys/fs/inotify/max_user_instances:每一个real user可创建的inotify instances数量的上限。

(3)./proc/sys/fs/inotify/max_user_watches:每个inotify实例相关联的watches的上限,即每个inotify实例可监控的最大目录、文件数量。如果监控的文件数目巨大,需要根据情况适当增加此值

echo 30000000 > /proc/sys/fs/inotify/max_user_watches

inotifywait命令的选项:

-m:表示始终监控,否则应该是监控到了一次就退出监控了
-r:递归监控,监控目录中的任何文件,包括子目录。递归监控可能会超出max_user_watches的值,需要适当调整该值
@<file>:如果是对目录进行递归监控,则该选项用于排除递归目录中不被监控的文件。file是相对路径还是绝对路径由监控目录是相对还是绝对来决定
-q--quiet的意思,静默监控,这样就不会输出一些无关的信息
-e:指定监控的事件。一般监控的就deletecreateattribmodifyclose_write
--exclude <pattern> :通过模式匹配来指定不被监控的文件,区分大小写
--excludei <pattern>:通过模式匹配来指定不被监控的文件,不区分大小写
--timefmt:监控到事件触发后,输出的时间格式,可指定可不指定该选项,一般设置为[--timefmt '%Y/%m/%d %H:%M:%S']
--format:用户自定义的输出格式,如[--format '%w%f %e%T']
  %w:产生事件的监控路径,不一定就是发生事件的具体文件,例如递归监控一个目录,该目录下的某文件产生事件,将输出该目录而非其内具体的文件
  %f:如果监控的是一个目录,则输出产生事件的具体文件名。其他所有情况都输出空字符串
  %e:产生的事件名称
  %T:以"--timefmt"定义的时间格式输出当前时间,要求同时定义"--timefmt"

inotifywait -e可监控的事件:

access:文件被访问
modify:文件被写入
attrib:元数据被修改。包括权限、时间戳、扩展属性等等
close_write:打开的文件被关闭,是为了写文件而打开文件,之后被关闭的事件
close_nowriteread only模式下文件被关闭,即只能是为了读取而打开文件,读取结束后关闭文件的事件
close:是close_writeclose_nowrite的结合,无论是何种方式打开文件,只要关闭都属于该事件
open:文件被打开
moved_to:向监控目录下移入了文件或目录,也可以是监控目录内部的移动
moved_from:将监控目录下文件或目录移动到其他地方,也可以是在监控目录内部的移动
move:是moved_tomoved_from的结合
moved_self:被监控的文件或目录发生了移动,移动结束后将不再监控此文件或目录
create:在被监控的目录中创建了文件或目录
delete:删除了被监控目录中的某文件或目录
delete_self:被监控的文件或目录被删除,删除之后不再监控此文件或目录
umount:挂载在被监控目录上的文件系统被umountumount后不再监控此目录
isdir :监控目录相关操作

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/535289.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

logstash密码设置步骤

生成密钥存储仓库 cd /app/logstash-6.8.4/bin/ ./logstash-keystore create 输入y 添加Logstash中可引用的变量 ./logstash-keystore add es_user 输入elastic ./logstash-keystore add es_pwd 输入bamBoo123 ./logstash-keystore add kafka_pwd 输入bamBoo123 ./logstash…

清理cacahe脚本

#! /bin/bash # 需要释放内存的&#xff0c;内存使用百分比&#xff0c;可以传参&#xff0c;默认是85% max_rate$1 if [ ! "$max_rate" ] ; thenmax_rate85 fi echo "max_rate: $max_rate"totalfree -m | awk NR2 | awk {print $2} usedfree -m | awk NR2…

Prometheus node_exporter 指标说明及告警规则表达

Prometheus node_exporter 指标说明及告警规则表达_独步秋风的博客-CSDN博客_node exporter 指标

UnicodeEncodeError: 'gbk' codec can't encode character '\xeb' in position 20: illegal multibyte sequ

源代码&#xff1a;with open (os.path.join(self.root,filename),mode‘w’,newline’’) as f: writercsv.writer(f) for img in images: nameimg.split(os.sep)[-2] labelself.name2lable[name] writer.writerow([img,label]) 解决方法 在open&#xff08;&#xff09;里面…

列表生成式(List)

列表生成式即List Comprehensions&#xff0c;是Python内置的非常简单却强大的可以用来创建list的生成式。 list(range(1,6)) [1,2,3,4,5]print([x*x for x in range(10)]) [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]print([x*x for x in range(10) if x%20]) [0, 4, 16, 36, 64]

uint8 转换为 float

znp.arange(3,dtypenp.uintj8) >>> z.astype(float) array([ 0., 1., 2.]) >>> np.int8(z) array([0, 1, 2], dtypeint8)

AttributeError: 'NoneType' object has no attribute 'astype'

img cv2.imread(path)#path为图片地址 print(type(img))>>> <class numpy.ndarray> <class numpy.ndarray> <class numpy.ndarray> <class NoneType>错误问题为没有正确读到图片&#xff0c;返回一个Nonetype类型&#xff0c;

pycharm 自动补全括号 引号

过程&#xff1a; File->settings->Editior->General->Smart Keys 勾选Insert paired barckets(),[],{},<>

RuntimeError: freeze_support()

train_dataloaderDataLoader(train_dataset,batch_sizebatch_size,shuffleTrue,num_workers4) 把nu_worker4 去掉 train_dataloaderDataLoader(train_dataset,batch_sizebatch_size,shuffleTrue)

IndexError: list index out of range image_name=self.images_name[index]

这里是引用 def __len__(self):return len(self.images_name) 注意这个地方

NameError: name 'long' is not defined

是因为高版本Python3.x中没有long类型&#xff0c;只有int类型。 Python2.x中既有long 类型又有int 类型。 所以只需要把long()改为int 就行

Latex 修改公式的的大小

第一种方法&#xff1a;用比较笨的方法&#xff0c;一个一个公式用\begin{small} \begin{equation} \ldots \end{equation} \end{small} 第二种方法&#xff1a;定义新的变量环境 在开始\newenvironment{sequation}{\begin{equation}\small}{\end{equation}}演示代码&#xff1…

latex表格名的引用问题

##方法 \begin{table} \label{*****} \end{table} 在文章中加入Tab.~\ref{****} 如果没有显示出来的话 在文章的开头加上\usepackage{table}

Anaconda如何重新在开始菜单显示

步骤&#xff1a; &#xff08;1&#xff09; win R &#xff0c;然后输入Cmd 进入电脑命令端 &#xff08;2&#xff09;cd 进入anaconda 安装的路径&#xff0c;然后 输入 、、、 python .\Lib_nsis.py mkmenus 、、、 然后就OK了

python 读取 Excel 文件的方法 csv.reader

with open(./hotel_bookings.csv,newline) as f:readercsv.reader(f)for row in reader:print(row)row 为list 类型

python matplotlib 绘制曲线图,柱状图

matplotlib.pyplot.bar(x, y, width0.8, bottomNone, \*, aligncenter, dataNone, \*\*kwargs) x:x轴的数据值&#xff0c;或者标签 y:每个标签的值 width: 每个柱形图中每个柱子的宽度 bottom&#xff1a;y轴的基准值&#xff08;一般为0&#xff09; align: 柱形图中每个柱子…

python for while enumerate

for 循环语句 list[2,3,4,5,6] for i in range(len(list)):print(i)print(list[i]) 其中 len() 表示计算数组的长度&#xff0c;range()表示生成一个指定长度的序列&#xff08;0&#xff0c;1&#xff0c;2&#xff0c;3&#xff0c;。。。。&#xff09; list[2,3,4,5,6]fo…

python plt.plot bar 设置绘图尺寸大小

plt.rcParams(figure.figsize)(12,8) 修改前 修改后

Pandas 中 把Dataframe 格式转化为 array 数组

’DataFrame’ object has no attribute numpy’ 使用values() 函数 data.values() array([[342. , 27. , 1. , ..., 0. , 0. , 0. ],[737. , 27. , 1. , ..., 0. , 0. , 0. ],[ 7. , 27. , 1. , ..., 0. , 0. , 75. ],...,[ 3…