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

expect脚本同步文件、指定host和要同步的文件、构建文件分发系统、批量远程执行命令

时间:2018-02-27 17:43:49      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:expect脚本   expect远程同步   

expect脚本同步文件
1.自动同步文件
[root@garytao-01 shell]# vi 4.expect

增加如下脚本内容:

#!/usr/bin/expect
set passwd "123456"
spawn rsync -av root@172.16.111.110:/tmp/12.txt /tmp/
expect {
"yes/no" { send "yes\r"}
"password:" { send "$passwd\r" }
}
expect eof

[root@garytao-01 shell]# chmod a+x 4.expect 

#如果机器上没有安装rsync请使用如下命令安装
[root@garytao-02 ~]# yum -y install rsync

技术分享图片

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

1.指定host和要同步的文件
[root@garytao-01 shell]# vi 5.expect

增加如下内容:

#!/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

[root@garytao-01 shell]# cat 5.expect 
#!/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
[root@garytao-01 shell]# chmod a+x 5.expect 
[root@garytao-01 shell]# ./5.expect 172.16.111.110 "/tmp/12.txt"
spawn rsync -av /tmp/12.txt root@172.16.111.110:/tmp/12.txt
root@172.16.111.110‘s password: 
sending incremental file list

sent 31 bytes  received 12 bytes  28.67 bytes/sec
total size is 5  speedup is 0.12
[root@garytao-01 shell]# 

expect构建文件分发系统

需求背景

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

实现思路

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

核心命令

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

文件分发系统的实现


## 创建rsync.expect执行脚本 
[root@garytao-01 shell]# vi rsync.expect

增加如下脚本内容:

#!/usr/bin/expect
set 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.list

172.16.111.110
127.0.0.1

##创建一个rsync.sh脚本
[root@garytao-01 shell]# vi rsync.sh

#!/bin/bash
for 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)? yes
Warning: 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]# 

批量远程执行命令

1.批量执行命令脚本
[root@garytao-01 shell]# vim exe.expect

增加如下脚本内容:

#!/usr/bin/expect
set host [lindex $argv 0]
set passwd "123456"
set cm [lindex $argv 1]
spawn ssh root@$host
expect {
"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/bash
for 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 ~]# hostname
garytao-01
[root@garytao-01 ~]# [root@garytao-01 shell]# 

expect脚本同步文件、指定host和要同步的文件、构建文件分发系统、批量远程执行命令

标签:expect脚本   expect远程同步   

原文地址:http://blog.51cto.com/taoxie/2073579

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