博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
expect脚本同步文件expect脚本指定host和要同步的文件 构建文件分发系统批量远程执行命令...
阅读量:5924 次
发布时间:2019-06-19

本文共 4121 字,大约阅读时间需要 13 分钟。

hot3.png

expect脚本同步文件

  • 在一台机器上把文件同步到多台机器上
  • 自动同步文件 vim 4.expect 
[root@yong-01 sbin]# vim 4.expect#!/usr/bin/expectset passwd "20655739"spawn rsync -av root@192.168.181.135:/tmp/12.txt /tmp/expect {"yes/no" { send "yes\r"}"password:" { send $passwd\r}}expect eof查看同步过程[root@yong-01 sbin]# chmod a+x 4.expect [root@yong-01 sbin]# ./4.expect spawn rsync -av root@192.168.181.135:/tmp/12.txt /tmp/The authenticity of host '192.168.181.135 (192.168.181.135)' can't be established.ECDSA key fingerprint is SHA256:oYqovve1b2BwHDBYcFasCiiFzZTHJvKDbTGZAjmlMXc.ECDSA key fingerprint is MD5:3d:f8:af:0d:85:48:db:2a:46:0e:68:5f:eb:43:3e:43.Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added '192.168.181.135' (ECDSA) to the list of known hosts.receiving incremental file list12.txtsent 30 bytes  received 84 bytes  228.00 bytes/sectotal size is 5  speedup is 0.04[root@yong-01 sbin]# ls /tmp/12.txt /tmp/12.txt[root@yong-01 sbin]# ll /tmp/12.txt -rw-r--r-- 1 root root 5 7月  21 00:48 /tmp/12.txt
  • expect eof :只有spawn执行的命令结果才会被expect捕捉到,因为spawn会启动一个进程,只有这个进程的相关信息才会被捕捉到,主要包括:标准输入的提示信息,eof和timeout。

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

  • set timeout 定义超时时间(单位为 秒) -1 为永远不超时
  • 指定host和要同步的文件 vim 5.expect
[root@yong-01 sbin]# vim 5.expect #!/usr/bin/expectset passwd "20655739"set host [lindex $argv 0]set file [lindex $argv 1]spawn rsync -av $file root@$host:$fileexpect {"yes/no" { send "yes\r"}"password:" { send "$passwd\r"}}expect eof
  • 变量定义的文件地址,使用时,必须写绝对路径
  • 本机文件同步到远程机器上去: ./5.expect 192.168.181.135 "/tmp/12.txt" 
  • [root@yong-01 sbin]# ./5.expect 192.168.181.135 "/tmp/12.txt"spawn rsync -av /tmp/12.txt root@192.168.181.135:/tmp/12.txtsending incremental file list12.txtsent 79 bytes  received 31 bytes  220.00 bytes/sectotal size is 5  speedup is 0.05expect: spawn id exp6 not open    while executing"expect eof"    (file "./5.expect" line 10)

     

构建文件分发系统

  • 需求背景
    • 对于大公司而言,肯定时不时会有网站或者配置文件更新,而且使用的机器肯定也是好多台,少则几台,多则几十甚至上百台。所以,自动同步文件是至关重要的。
  • 实现思路
    • 首先要有一台模板机器,把要分发的文件准备好,然后只要使用expect脚本批量把需要同步的文件分发到目标机器即可。
  • 核心命令
    • rsync -av --files-from=list.txt / root:/
    • 使用rsync 的 --files参数,可以实现调用文件里面的列表,进行多个文件远程传输,进而实现文件分发
    • 文件分发系统的实现

1、rsync.expect 内容

[root@yong-01 sbin]# vim rsync.expect#!/usr/bin/expectset passwd "20655739"set host [lindex $argv 0]set file [lindex $argv 1]spawn rsync -avR --files-from=$file / root@$host:/   //这个地方定义了原目录和目标目录以跟目录开始expect {"yes/no" { send "yes\r"}"password:" { send "$passwd\r" }}expect eof
  • 同步的路径,需要保证对方机器也有这个相同的路径,如果没有路径,需要使用 -R 创建路径
  • 因为实现分发系统,肯定是因为需要分发的机器数量过大,所以,定义好了 文件 的 list 列表文件以后, 还需要配置 ip 的列表文件
  • 创建需要同步文件的列表文件
  • 创建需要同步IP地址的列表文件
  1. rsync.sh 内容
#!/bin/bash for ip in `cat /tmp/ip.list`do    echo $ip       ./rsync.expect $ip /tmp/file.listdone执行过程[root@yong-01 sbin]# sh -x rsync.sh++ cat /tmp/ip.list+ for ip in '`cat /tmp/ip.list`'+ echo 192.168.181.135192.168.181.135+ ./rsync.expect 192.168.181.135 /tmp/file.listspawn rsync -avR --files-from=/tmp/file.list / root@192.168.181.135:/building file list ... doneroot/sent 114 bytes  received 15 bytes  258.00 bytes/sectotal size is 1051  speedup is 8.15expect: spawn id exp6 not open    while executing"expect eof"    (file "./rsync.expect" line 10)+ for ip in '`cat /tmp/ip.list`'+ echo 192.168.181.138192.168.181.138+ ./rsync.expect 192.168.181.138 /tmp/file.listspawn rsync -avR --files-from=/tmp/file.list / root@192.168.181.138:/root@192.168.181.138's password: building file list ... doneroot/root/shell/root/shell/case.shtmp/tmp/12.txtsent 1257 bytes  received 59 bytes  2632.00 bytes/sectotal size is 1051  speedup is 0.80
  • 这个sh 的目的,就是遍历一下 ip列表文件中的 ip地址

  • 最重要的,expect脚本 必须加入执行权限

  • 文件不存在,会报错

  • 分发系统还有一个重要的关键是,确保同步的机器的密码一致,否则将不能实现同步;所以这就存在一个弊端,一旦脚本暴露,将会让别人知道如何登陆你机器;当然也有对应的解决办法,那就是使用密钥认证,这样的话,自然在命令行业省去“输入密码< password:" { send "$passwd\r" } >''”和“定义密码< set passwd "123123a" >”的命令了

批量远程执行命令

  • exe.expect 内容
#!/usr/bin/expectset host [lindex $argv 0]set passwd "20655739"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"
  • exe.sh 内容
#!/bin/bashfor ip in `cat ip.list`do    echo $ip    ./exe.expect $ip "w;free -m;ls /tmp"done

转载于:https://my.oschina.net/u/3791387/blog/1860409

你可能感兴趣的文章
引入间接隔离变化(三)
查看>>
统一沟通-技巧-4-让国内域名提供商“提供”SRV记录
查看>>
cocos2d-x 3.0事件机制及用户输入
查看>>
比亚迪速锐F3专用夏季座套 夏天坐垫 四季坐套
查看>>
C++ 数字转换为string类型
查看>>
程序员全国不同地区,微信(面试 招聘)群。
查看>>
【干货】界面控件DevExtreme视频教程大汇总!
查看>>
闭包 !if(){}.call()
查看>>
python MySQLdb安装和使用
查看>>
Java小细节
查看>>
poj - 1860 Currency Exchange
查看>>
chgrp命令
查看>>
Java集合框架GS Collections具体解释
查看>>
洛谷 P2486 BZOJ 2243 [SDOI2011]染色
查看>>
linux 笔记本的温度提示
查看>>
(转)DOTA新版地图6.78发布:大幅改动 增两位新英雄
查看>>
Solaris 10u11 安装python2.7.10
查看>>
工欲善其事必先利其器SecureCRT+VMware® Workstation_学习笔记
查看>>
文件和目录权限chmod,更改所有者和所属组chown,umask,隐藏权限lsattr/chattr
查看>>
阿里PB级Kubernetes日志平台建设实践
查看>>