码迷,mamicode.com
首页 >  
搜索关键字:expect脚本    ( 118个结果
Linux之expect非交互式功能
我在上一篇博文linux之SSH密钥认证 提过ssh之间的相互认证,但是每次使用ssh登录到其它服务器还是要输入密码的。 expect是用于提供自动交互的工具,自动连接被管理的服务器,不需要手动输入密码。 1、安装expect 2、编写expect脚本,直接分发SSH公钥,不用手工输入密码。 vim ...
分类:系统相关   时间:2018-05-25 13:49:46    阅读次数:245
expect脚本远程登陆主机并记录日志
expect远程登陆并且记录日志
分类:其他好文   时间:2018-05-25 11:11:08    阅读次数:290
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/下 :[root@hao-01 ~]# vim 4.expect添加内容:#!/usr/bin/expectset passwd
分类:其他好文   时间:2018-05-03 14:22:20    阅读次数:151
expect脚本同步文件 expect脚本指定host和要同步的文件 构建文件分发系统 批量远程执行命令
自动同步文件 指定host和要同步的文件 需求背景对于大公司而言,肯定时不时会有网站或者配置文件更新,而且使用的机器肯定也是好多台,少则几台,多则几十甚至上百台。所以,自动同步文件是至关重要的。 实现思路首先要有一台模板机器,把要分发的文件准备好,然后只要使用expect脚本批量把需要同步的文件分发 ...
分类:其他好文   时间:2018-04-30 00:03:07    阅读次数:196
分发系统介绍 expect脚本远程登录 expect脚本远程执行命令 expect脚本传递参数
expect脚本远程登录 自动远程登录 自动远程登录后,执行命令并退出 传递参数 ...
分类:其他好文   时间:2018-04-30 00:02:35    阅读次数:153
分发系统(下)
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
shell-8
一、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 脚本同步文件,指定host和要同步的文件,构建文件分发系统,批量远程执行命令
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
shell脚本基础(八)
一、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
expect脚本同步文件expect脚本指定host和要同步的文件 构建文件分发系统批量远程执行命令
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
118条   上一页 1 ... 4 5 6 7 8 ... 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!