在192.168.9.51机器上 1)运行:#ssh-keygen -t rsa 2)然后拍两下回车(均选择默认) 3)运行: #ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.79.17 4)再输入17机器上的root密码 此...
分类:
系统相关 时间:
2014-09-10 12:10:40
阅读次数:
214
Description
Problem A
Expect the Expected
Input: Standard Input
Output: Standard Output
Some mathematicalbackground. This problem asks you to compute the expected value of arandom variable...
分类:
其他好文 时间:
2014-08-29 16:03:58
阅读次数:
218
#!/bin/baship="172.16.1.113"command="ssh$ip"expect-c"spawn$command;expect{\"Areyousureyouwanttocontinueconnecting(yes/no)?\"{send\"yes\r\";exp_continue}}"
分类:
其他好文 时间:
2014-08-24 10:23:32
阅读次数:
414
方法一:使用下例中ssky-keygen和ssh-copy-id,仅需通过3个步骤的简单设置而无需输入密码就能登录远程Linux主机。ssh-keygen 创建公钥和密钥。ssh-copy-id 把本地主机的公钥复制到远程主机的authorized_keys文件上。ssh-copy-id 也会给远程...
分类:
其他好文 时间:
2014-08-24 01:29:21
阅读次数:
443
使用下例中ssky-keygen和ssh-copy-id,仅需通过3个步骤的简单设置而无需输入密码就能登录远程Linux主机。 ssh-keygen 创建公钥和密钥。 ssh-copy-id 把本地主机的公钥复制到远程主机的authorized_keys文件上。ssh-copy-id 也会给远程主机...
分类:
系统相关 时间:
2014-08-22 19:20:29
阅读次数:
214
#!/usr/bin/expectset timeout 30spawn ssh fangkui@172.100.101.150expect { "fangkui@172.100.101.150's password:" {send "652289237\r"}}interact
分类:
其他好文 时间:
2014-08-19 16:27:34
阅读次数:
216
在linux系统中,如何用shell脚本抓取远程日志?分析线上的日志会有一个困境,机器太多,如果每台都登录上去看不太现实,但是下载下来更麻烦因为每台SCP都要求输入密码。于是我便写了一个自动抓取远程日志的脚本,实现在基本功能。代码:#!/usr/bin/expect -fif { $argc !=1...
分类:
其他好文 时间:
2014-08-15 23:40:09
阅读次数:
327
综述:expect主要包含三部分,spawn,expect和sendspawn实现交互命令的劫持,是自动化交互的基础;然后可以用expect来进行结果查询;expect实现对交互命令输出的解析,得到关键字的查询,如password,user,然后停止,等待交互;send对解析字段内容尽心输入;如pa...
分类:
其他好文 时间:
2014-08-15 14:08:48
阅读次数:
287
我这方法是通过expect实现的。安装expectyuminstall-yexpect操作:[root@ln-slave~]#cattest.sh/usr/local/mysql/bin/mysql-e"selectversion();"[root@ln-slave~]#lltest.sh-rwxr-xr-x1rootroot5008-1316:44test.sh[root@ln-slave~]#shtest.sh+------------+|version()|+------..
分类:
数据库 时间:
2014-08-13 19:14:08
阅读次数:
424
expect与rsync异步并行备份数据脚本
#!/bin/bash
#author:qunying.liu
#2014.08.02
#脚本用途:通过rsync从远程机器备份数据到本机机器对应目录
#脚本目录:/usr/local/scripts/,expect脚本目录:/usr/local/scripts/dsfilersync,
#备注:一个机器对应一个exp脚本,该脚本中..
分类:
其他好文 时间:
2014-08-11 15:22:23
阅读次数:
232