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

7月21日

时间:2018-07-21 11:52:15      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:erro   相同   bytes   city   分发系统   error:   error   img   批量执行命令   

20.31 expect脚本同步文件


expect脚本同步文件

自动同步文件

 

#!/usr/bin/expect

set passwd "123456"

spawn rsync -av root@192.168.133.132:/tmp/12.txt /tmp/ 

expect {

"yes/no" { send "yes\r"}

"password:" { send "$passwd\r" }

expect eof

 

20.32 expect脚本指定host和要同步的文件

expect脚本指定host和要同步的文件

指定host和要同步的文件:

 

#!/usr/bin/expect 

set passwd "123456"

set host [lindex $argv 0]

set file [lindex $argv 1]

spawn rsync -av $file root@$host:$file 

expect {

"yes/no" { send "yes\r"}

"password:" { send "$passwd\r" }

expect eof



expect构建文件分发系统

需求背景

对于大公司而言,肯定时不时会有网站或者配置文件更新,而且使用的机器肯定也是好多台,少则几台,多则几十甚至上百台。所以,自动同步文件是至关重要的。

实现思路

首先要有一台模板机器,把要分发的文件准备好,然后只要使用expect脚本批量把需要同步的文件分发到目标机器即可。

核心命令

rsync -av --files-from=list.txt  /  root@host:/

文件分发系统的实现

## 创建rsync.expect执行脚本 [root@garytao-01 shell]# vi rsync.expect增加如下脚本内容:#!/usr/bin/expectset passwd "123456"set host [lindex $argv 0]
set file [lindex $argv 1]
spawn rsync -av --files-from=$file / root@$host:/expect {"yes/no" { send "yes\r"}"password:" { send "$passwd\r" }
}
expect eof## file.list内容,为同步的文件路径列表[root@garytao-01 shell]# vi /tmp/file.list增加如下需要同步的文件路径:

/tmp/12.txt
/root/shell/1.sh
/root/111/222/lll.txt## ip.list内容,为需要同步的远程机器IP列表[root@garytao-01 shell]# vi /tmp/ip.list172.16.111.110127.0.0.1##创建一个rsync.sh脚本[root@garytao-01 shell]# vi rsync.sh#!/bin/bashfor ip in `cat /tmp/ip.list`do
    ./rsync.expect $ip /tmp/file.list
done##加权限执行脚本[root@garytao-01 shell]# chmod a+x rsync.expect [root@garytao-01 shell]# sh -x rsync.sh++ cat /tmp/ip.list
+ for ip in '`cat /tmp/ip.list`'+ ./rsync.expect 172.16.111.110 /tmp/file.list
spawn rsync -avR --files-from=/tmp/file.list / root@172.16.111.110:/root@172.16.111.110's password: 
building file list ... rsync: link_stat "/root/shell/1.sh" failed: No such file or directory (2)
done
root/
root/111/
root/111/222/
root/111/222/lll.txt/
tmp/

sent 130 bytes  received 27 bytes  314.00 bytes/sec
total size is 5  speedup is 0.03
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1052) [sender=3.0.9]
+ for ip in '`cat /tmp/ip.list`'
+ ./rsync.expect 127.0.0.1 /tmp/file.list
spawn rsync -avR --files-from=/tmp/file.list / root@127.0.0.1:/
The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established.
ECDSA key fingerprint is 89:19:99:8c:63:ff:d9:e6:19:0d:81:03:27:54:49:78.
Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added '127.0.0.1' (ECDSA) to the list of known hosts.
root@127.0.0.1's password: [root@garytao-01 shell]#

备注:如果不能保证对方机器有相同的路径就加上R,编辑rsync.expect
技术分享图片

注意:做分发系统expect脚本的前提是需要保证机器密码一样,这样会有一个问题就是如果密码泄露的话就会有安全隐患,所以可以做密钥认证增加安全。

[root@garytao-01 shell]# passwd更改用户 root 的密码 。
新的 密码:
重新输入新的 密码:
passwd:所有的身份验证令牌已经成功更新。
[root@garytao-01 shell]#

 

20.34 批量远程执行命令

批量远程执行命令

1.批量执行命令脚本
[root@garytao-01 shell]# vim exe.expect增加如下脚本内容:#!/usr/bin/expectset host [lindex $argv 0]set passwd "123456"set cm [lindex $argv 1]
spawn ssh root@$hostexpect {"yes/no" { send "yes\r"}"password:" { send "$passwd\r" }
}
expect "]*"send "$cm\r"expect "]*"send "exit\r"[root@garytao-01 shell]# chmod a+x exe.expect ## 定义一个exe的sehll脚本[root@garytao-01 shell]# vim exe.sh增加如下脚本内容:#!/bin/bashfor ip in `cat /tmp/ip.list`do
    ./exe.expect $ip "hostname"done##执行脚本[root@garytao-01 shell]# sh exe.sh spawn ssh root@172.16.111.110
root@172.16.111.110's password: 
Last login: Tue Feb 27 11:21:39 2018 from 172.16.111.100
[root@garytao-02 ~]# hostname
garytao-02
[root@garytao-02 ~]# spawn ssh root@127.0.0.1
root@127.0.0.1's password: 
Last login: Tue Feb 27 16:52:17 2018 from 172.16.111.1 
[root@garytao-01 ~]# hostnamegarytao-01
[root@garytao-01 ~]# [root@garytao-01 shell]#






 



7月21日

标签:erro   相同   bytes   city   分发系统   error:   error   img   批量执行命令   

原文地址:http://blog.51cto.com/404006045/2147908

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