码迷,mamicode.com
首页 > 其他好文 > 详细

文件分发系统

时间:2018-03-18 16:21:17      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:expect shell

文件分发系统

一个机器上的多个文件要同步到多台机器上,该如何处理?

需求:将192.168.221.10机器上的/aa/aa.txt、/bb/bb.txt、/cc/cc.txt、/dd/dd.txt同步到192.168.221.20,192.168.221.30这两台机器上

  • 在192.168.221.10机器上创建aa/aa.txt、/bb/bb.txt、/cc/cc.txt、/dd/dd.txt
mkdir {/aa/,/bb/,/cc/,/dd/}
echo "aa" > /aa/aa.txt;echo "bb" > /bb/bb.txt;echo "cc" > /cc/cc.txt;echo "dd" > /dd/dd.txt
  • 实现文件同步的脚本one-more-rsync.sh
vim /usr/local/sbin/expect/one-more-rsync.sh
#!/usr/bin/expect
set passwd "root"
set user "root"
set host [lindex $argv 0]
set file [lindex $argv 1]
spawn rsync -avR --files-from=$file / $user@$host:/
expect {
"yes/no" {send "yes\r";exp_continue}
"password:" {send "$passwd\r"}
}
expect eof

chmod +x /usr/local/sbin/expect/one-more-rsync.sh
  • 建立一个同步的文件列表(one-more-rsync.sh中变量file)
vim /tmp/publicfilelist.txt
/aa/aa.txt
/bb/bb.txt
/cc/cc.txt
/dd/dd.txt
  • 建立一个发送文件目标机器的ip列表
vim /tmp/desip.txt
192.168.221.20
192.168.221.30
  • 写一个运行的脚本run.sh,调用one-more-rsync.sh
vim /usr/local/sbin/expect/run.sh
#!/bin/bash
publicfilelist="/tmp/publicfilelist.txt"
for desip in `cat /tmp/desip.txt`; do
        ./one-more-rsync.sh $desip $publicfilelist   //注意参数的顺序
done
  • 执行run.sh
[root@localhost expect]# bash run.sh 
spawn rsync -avR --files-from=/tmp/publicfilelist.txt / root@192.168.221.20:/
root@192.168.221.20‘s password: 
building file list ... done
aa/
aa/aa.txt
bb/
bb/bb.txt
cc/
cc/cc.txt
dd/
dd/dd.txt

sent 328 bytes  received 100 bytes  856.00 bytes/sec
total size is 12  speedup is 0.03
spawn rsync -avR --files-from=/tmp/publicfilelist.txt / root@192.168.221.30:/
The authenticity of host ‘192.168.221.30 (192.168.221.30)‘ can‘t be established.
ECDSA key fingerprint is SHA256:UiIDDUfExrEZLxrI8+z6PWjWsNCO2GTDDfTKpEhQaWY.
ECDSA key fingerprint is MD5:4e:79:bd:c6:bb:8d:b7:ee:1a:a4:cb:25:03:22:10:5f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘192.168.221.30‘ (ECDSA) to the list of known hosts.
root@192.168.221.30‘s password: 
building file list ... done
aa/
aa/aa.txt
bb/
bb/bb.txt
cc/
cc/cc.txt
dd/
dd/dd.txt

sent 328 bytes  received 100 bytes  285.33 bytes/sec
total size is 12  speedup is 0.03

文件分发系统

标签:expect shell

原文地址:http://blog.51cto.com/13480443/2088161

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!