1、FastDFS FastDFS是一个开源的分布式文件系统,她对文件进行管理,功能包括:文件存储、文件同步、文件访问(文件上传、文件下载)等,解决了大容量存储和负载均衡的问题。特别适合以文件为载体的在线服务,如相册网站、视频网站等等。 2、Dubbo Dubbo 是阿里巴巴公司开源的一个高性能优秀 ...
分类:
其他好文 时间:
2018-05-25 14:00:02
阅读次数:
142
一、rsync通过服务同步1?要编辑配置文件:/etc/rsyncd.conf2、启动rsync--daemon(检测是否启动:psaux|greprsync)3、格式:rsync-avtest1/192.168.133.11.130::module/dir/例:从b机用rsync服务同步文件到a机1?在a机上编辑:/etc/rsyncd.conf文件。加入下面一段rsync.conf的样例,更改
分类:
其他好文 时间:
2018-05-17 11:45:10
阅读次数:
167
inotify-tools+rsync实时同步文件安装和配置 注:转载https://www.linuxidc.com/Linux/2012-06/63624.htm ...
分类:
系统相关 时间:
2018-05-08 12:19:07
阅读次数:
232
20.31 expect脚本同步文件;20.32 expect脚本指定host和要同步的文件;20.33 构建文件分发系统;20.34 批量远程执行命令20.31 expect脚本同步文件自动同步文件1. 同步远程机器hao2上/tmp/12.txt文件 到本机/tmp/下 :[root@hao-01 ~]# vim 4.expect添加内容:#!/usr/bin/expectset passwd
分类:
其他好文 时间:
2018-05-03 14:22:20
阅读次数:
151
[toc]五、自动同步文件5.1配置脚本核心命令,就是用的rsync服务。[root@xavilinux03sbin]#vim4.expect#!/usr/bin/expectsetpasswd"123456"spawnrsync-avroot@192.168.XXX.XXX:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}"password:"{send"
分类:
系统相关 时间:
2018-05-01 12:39:47
阅读次数:
219
自动同步文件 指定host和要同步的文件 需求背景对于大公司而言,肯定时不时会有网站或者配置文件更新,而且使用的机器肯定也是好多台,少则几台,多则几十甚至上百台。所以,自动同步文件是至关重要的。 实现思路首先要有一台模板机器,把要分发的文件准备好,然后只要使用expect脚本批量把需要同步的文件分发 ...
分类:
其他好文 时间:
2018-04-30 00:03:07
阅读次数:
196
如何利用expect和shell结合实现 批量同步文件,批量执行命令;
分类:
其他好文 时间:
2018-04-27 12:23:16
阅读次数:
134
expect脚本同步文件1.创建脚本:[root@weix-01sbin]#vi4.expect#!/usr/bin/expectsetpasswd"w14"spawnrsync-avroot@192.168.127.132:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}"password:"{send"$passwd\r"}}expecteof2.添加权
分类:
其他好文 时间:
2018-04-27 12:18:53
阅读次数:
149
20.31expect脚本同步文件将文件从sever2同步到server1。[root@z1~]#vim4.expect#!/usr/bin/expectsetpasswd"123456"spawnrsync-avroot@192.168.8.138:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}
分类:
其他好文 时间:
2018-04-27 12:14:59
阅读次数:
146
一、expect脚本同步文件 1、编辑同步脚本4.expect #! /usr/bin/expectset passwd "root1234"spawn rsync -av root@192.168.134.131:/tmp/hk.txt /tmp #将131 上hk.txt 考到 本地tmp下ex ...
分类:
系统相关 时间:
2018-04-27 02:45:16
阅读次数:
216