使用expect实现自动登录的脚本,网上有很多,可是都没有一个明白的说明,初学者一般都是照抄、收藏。可是为什么要这么写却不知其然。本文用一个最短的例子说明脚本的原理。 脚本代码如下: ############################################## #!/usr/b...
分类:
系统相关 时间:
2015-01-09 10:28:57
阅读次数:
301
WHAT ARE MY STRENGTHS?Whenever you make a key decision or take a key action,write down what expect will happen.9 or 12 months later,compare the actual...
分类:
其他好文 时间:
2015-01-09 00:03:21
阅读次数:
403
#!/bin/bashexpect -c " set timeout 1000 spawn /bin/su - root expect \":" send \"12360.cn\n\" interact"
分类:
系统相关 时间:
2015-01-08 19:50:39
阅读次数:
237
ssh到192.168.88.61机器上,需要密码,这样对一些脚本工作不方便,因为需要密码,也就是需要人工干预。最近发现一个命令ssh-copy-id很方便,测试了一下,果然好用,记录下来:在192.168.88.61机器上1)运行:ssh-keygen-trsa2)然后拍两下回车(均选择默认)3)运行:ssh-copy-id-..
分类:
系统相关 时间:
2015-01-07 07:06:45
阅读次数:
230
#!/usr/bin/expect
set timeout 30
spawn ssh -p [lindex $argv 0] [lindex $argv 1]@[lindex $argv 2]
expect {
"(yes/no)?"
{send "yes\n";exp_continue}
"password:" ...
分类:
其他好文 时间:
2015-01-06 12:16:12
阅读次数:
167
1、准备ssh-copy-id brew install ssh-copy-id 2、生成私钥公钥 ssh-keygen -t rsa -b 1024 3、将公钥上传致服务器(~/.ssh/authorized_keys) ssh-copy-id -i 公钥 root@192.168.1.xxx 4、在本地~/.config文件中添...
分类:
Web程序 时间:
2015-01-05 13:21:44
阅读次数:
187
ansible推送ssh公钥1管理机器少的情况下可以直接推送过去使用ssh-keygen-trsa生成密钥对,!miyaoQQ截图20141225124030.png!id_rsa私钥,保留在主机,id_rsa.pub是公钥需要推送到管理机器上,并重命名为authorized_keys文件推送到远程机器ssh-copy-id-i~/.ssh/id_rsa.pubusernam..
分类:
其他好文 时间:
2015-01-03 13:24:19
阅读次数:
190
ansible推送ssh公钥1管理机器少的情况下可以直接推送过去使用ssh-keygen-trsa生成密钥对,!miyaoQQ截图20141225124030.png!id_rsa私钥,保留在主机,id_rsa.pub是公钥需要推送到管理机器上,并重命名为authorized_keys文件推送到远程机器ssh-copy-id-i~/.ssh/id_rsa.pubusernam..
分类:
其他好文 时间:
2015-01-03 13:23:55
阅读次数:
184
yum-yinstallexpectloginasnormaluser:visu.exp#!/usr/bin/expectsettimeout30spawnsu-expect"Password:"send"root-pass\r"interactchmod+xsu.exp./su.exp
分类:
系统相关 时间:
2014-12-25 18:43:07
阅读次数:
174
使用Axis2调用CXF服务端Webservice方法时:
报错:Unmarshalling Error: unexpected element (uri:"http://ejb.fss.keyman.com", local:"xmldata"). Expected elements are
详细信息如下:
org.apache.axis2.AxisFault: Unmarshalli...
分类:
Web程序 时间:
2014-12-24 16:26:29
阅读次数:
731