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

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

20.31 expect脚本同步文件

自动同步文件

1. 同步远程机器hao2上/tmp/12.txt文件 到本机/tmp/下 :

[[email protected] ~]# vim 4.expect

添加内容:

#!/usr/bin/expect

set passwd "admin"

spawn rsync -av [email protected]192.168.211.129:/tmp/12.txt /tmp/

expect {

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

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

}expect eof

2. 增加4.expect脚本x权限 :

[[email protected] ~]# chmod a+x 4.expect

3. 执行4.expect脚本(自动同步文件) :

[[email protected] ~]# ./4.expect

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

1. 执行脚本需要:指定host(主机ip)和要同步的文件

[[email protected] ~]# vim 5.expect

添加内容:

#!/usr/bin/expect

set passwd "admin"

set host [lindex $argv 0]

set file [lindex $argv 1]

spawn rsync -av $file [email protected]$host:$file

expect {

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

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

}

expect eof

2. 增加5.expect脚本x权限 :

[[email protected] ~]# chmod a+x 5.expect

3. 执行5.expect脚本(执行一次只能同步一个文件!) :

[[email protected] ~]# ./5.expect 192.168.211.128 "tmp/12.txt"

20.33 构建文件分发系统

shell项目-分发系统-构建文件分发系统

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

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

3. 核心命令rsync -av --files-from=list.txt  /  [email protected]:/

文件分发系统的实现

1. 创建rsync.expect核心脚本 :

(从本地/根目录  到远程/根目录)

[[email protected] ~]# vim rsync.expect

(远程ip机器密码需要和本地一致;也可以做用户认证,即可不用密码一致,安全)

添加内容:

#!/usr/bin/expect

set passwd "admin"

set host [lindex $argv 0]

set file [lindex $argv 1]

spawn rsync -avR --files-from=$file / [email protected]$host:/

expect {

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

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

}

expect eof

2. 创建本地同步文件列表文件 :

(本地同步到远程机器的文件;绝对路径)

[[email protected] ~]# vim /tmp/file.list

添加内容:

/tmp/12.txt

/root/1.txt

3. 创建远程机器ip列表文件 :

(远程ip机器密码需要和本地一致;也可以做用户认证,即可不用密码一致,安全)

[[email protected] ~]# vim /tmp/ip.list

添加内容:

192.168.211.129

127.0.0.1

4. 创建 rsync.sh循环脚本 :

(对应指定: 同步到远程机器ip列表文件 本地同步文件列表文件)

[[email protected] ~]# vim rsync.sh

添加内容:

#!/bin/bash

for ip in `cat /tmp/ip.list`

do

./rsync.expect $ip /tmp/file.list

done

5. 增加rsync.sh脚本x权限 :

[[email protected] ~]# chmod a+x rsync.sh

6. 执行rsync.sh脚本

[[email protected] ~]# sh -x rsync.sh

20.34 批量远程执行命令

1. 创建exe.expect核心脚本:

[[email protected] ~]# chmod a+x exe.expect

添加内容:

#!/usr/bin/expect

set host [lindex $argv 0]

set passwd "admin"

set cm [lindex $argv 1]

spawn ssh [email protected]$host

expect {

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

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

}

expect "]*"

send "$cm\r"

expect "]*"

send "exit\r"

2. 增加exe.expec脚本x权限 :

[[email protected] ~]# chmod a+x exe.expec

3. 创建exe.sh脚本 :

(设定 访问远程机器执行的命令)

[[email protected] ~]# vim exe.sh

#/bin/bash

for ip in `cat /tmp/ip.list`

do

./exe.expect $ip "ls"

done

4. 执行exe.sh脚本 :

[[email protected] ~]# sh exe.sh

原文地址:http://blog.51cto.com/zhuneianxiang/2112101

时间: 2024-11-10 02:06:16

20.31 expect脚本同步文件;20.32 expect脚本指定host和要同步的文件;的相关文章

20.31 expect脚本同步文件;20.32 expect脚本指定host和要同步的文件;20.33 构建文件分发系统;20.34

20.31 expect脚本同步文件 自动同步文件 1. 同步远程机器hao2上/tmp/12.txt文件 到本机/tmp/下: [[email protected] ~]# vim 4.expect 添加内容: #!/usr/bin/expect set passwd "admin" spawn rsync -av [email protected]192.168.211.129:/tmp/12.txt /tmp/ expect { "yes/no" { send

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

20.31 expect脚本同步文件 20.32 expect脚本指定host和要同步的文件 20.33 构建文件分发系统 20.34 批量远程执行命令 原文地址:http://blog.51cto.com/12058686/2108318

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

20.31 expect脚本同步文件 自动同步文件 #!/usr/bin/expect set passwd "rootroot" spawn rsync -av [email protected]:/tmp/12.txt /tmp/ expect { "yes/no" { send "yes\r"} "password:" { send "$passwd\r"} } expect eof 执行 [[ema

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

20.31 expect脚本同步文件#!/usr/bin/expectset passwd "liang.123"spawn rsync -av [email protected]:/tmp/12.txt /tmp/ 将远程的/tmp/12.txt同步到本地的机器上 expect {"yes/no" { send "yes\r"} 第一次会提示yes或no"password:" { send "$passwd\r&q

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

expect脚本自动同步文件 #!/usr/bin/expectset passwd "1q2w3e"spawn rsync -av [email protected]:/tmp/12.txt /tmp/expect {"yes/no" { send "yes\r"}"password:" { send "$passwd\r" }}expect eof 如果尝试取消最后一行,expect eof 会出现,还

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

expect脚本同步文件 在一台机器上把文件同步到多台机器上 自动同步文件 [[email protected] sbin]# vim 4.expect #!/usr/bin/expect set passwd "s5381561" spawn rsync -av [email protected]:/tmp/12.txt /tmp/ expect { "yes/no" { send "yes\r"} "password:"

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

expect脚本同步文件 1.自动同步文件 [[email protected] shell]# vi 4.expect 增加如下脚本内容: #!/usr/bin/expect set passwd "123456" spawn rsync -av [email protected]:/tmp/12.txt /tmp/ expect { "yes/no" { send "yes\r"} "password:" { send &

七十四、expect脚本同步文件、expect脚本指定host和要同步的文件、构建文件分发系统、

七十四.expect脚本同步文件.expect脚本指定host和要同步的文件.构建文件分发系统.批量远程执行命令 一.expect脚本同步文件 自动同步文件,在一台机器上同步文件到另一台机器上去.核心命令是rsync [[email protected] sbin]# vim 4.expect     路径:/usr/local/sbin/ #!/usr/bin/expect set passwd "1346" spawn rsync -av [email protected]:/tm

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

自动同步文件 #!/usr/bin/expect set passwd "123456" spawn rsync -av [email protected]192.168.133.132:/tmp/12.txt /tmp/ expect { "yes/no" { send "yes\r"} "password:" { send "$passwd\r" } } expect eof 指定host和要同步的文件