[toc]五、自动同步文件5.1配置脚本核心命令,就是用的rsync服务。[root@xavilinux03sbin]#vim4.expect#!/usr/bin/expectsetpasswd"123456"spawnrsync-avroot@192.168.XXX.XXX:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}"password:"{send"
分类:
系统相关 时间:
2018-05-01 12:39:47
阅读次数:
219
自动同步文件 指定host和要同步的文件 需求背景对于大公司而言,肯定时不时会有网站或者配置文件更新,而且使用的机器肯定也是好多台,少则几台,多则几十甚至上百台。所以,自动同步文件是至关重要的。 实现思路首先要有一台模板机器,把要分发的文件准备好,然后只要使用expect脚本批量把需要同步的文件分发 ...
分类:
其他好文 时间:
2018-04-30 00:03:07
阅读次数:
196
如何利用expect和shell结合实现 批量同步文件,批量执行命令;
分类:
其他好文 时间:
2018-04-27 12:23:16
阅读次数:
134
expect脚本同步文件1.创建脚本:[root@weix-01sbin]#vi4.expect#!/usr/bin/expectsetpasswd"w14"spawnrsync-avroot@192.168.127.132:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}"password:"{send"$passwd\r"}}expecteof2.添加权
分类:
其他好文 时间:
2018-04-27 12:18:53
阅读次数:
149
20.31expect脚本同步文件将文件从sever2同步到server1。[root@z1~]#vim4.expect#!/usr/bin/expectsetpasswd"123456"spawnrsync-avroot@192.168.8.138:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}
分类:
其他好文 时间:
2018-04-27 12:14:59
阅读次数:
146
一、expect脚本同步文件 1、编辑同步脚本4.expect #! /usr/bin/expectset passwd "root1234"spawn rsync -av root@192.168.134.131:/tmp/hk.txt /tmp #将131 上hk.txt 考到 本地tmp下ex ...
分类:
系统相关 时间:
2018-04-27 02:45:16
阅读次数:
216
expect脚本自动同步文件#!/usr/bin/expectsetpasswd"1q2w3e"spawnrsync-avroot@192.168.67.129:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}"password:"{send"$passwd\r&quo
分类:
其他好文 时间:
2018-04-27 02:23:54
阅读次数:
149
一、expect脚本同步文件[root@zlinux-01~]#cd/usr/local/sbin/[root@zlinux-01sbin]#ls01.expect02.expect03.expectcheck_ng.shlvs_dr.shlvs_nat.shmonnginx_log_rotate.sh[root@zlinux-01sbin]#vim04.expect//自动同步脚本#!/usr/
分类:
系统相关 时间:
2018-04-27 02:13:58
阅读次数:
219
20.31expect脚本同步文件#!/usr/bin/expectsetpasswd"liang.123"spawnrsync-avroot@192.168.137.130:/tmp/12.txt/tmp/将远程的/tmp/12.txt同步到本地的机器上expect{"yes/no"{send"yes\r"}第一次会提示yes或no&q
分类:
其他好文 时间:
2018-04-26 23:39:30
阅读次数:
329
20.31 expect脚本同步文件 20.32 expect脚本指定host和要同步的文件 20.
分类:
其他好文 时间:
2018-04-26 21:46:03
阅读次数:
144