关键字:ssh自动输入密码 ssh输入密码 ssh免密码登录linux ssh一键登录脚本
原创内容,转载请注明出处:https://www.myzhenai.com.cn/post/1667.html https://www.myzhenai.com/thread-16105-1-1.html
因为我自己有几台Linux的服务器需要管理,有时候管理的时候需要ssh手动登录并执行相应代码,操作非常繁锁,于是想到自动化脚本,写一个一键管理的脚本,以后只要运行相应的脚本就可以管理对应的服务器,这样的效率就会高很多了,本来Linux上有一个shell脚本,但是执行它还是需要手动登录ssh,能不能自动登录ssh呢? 我查找了网上很多资料,有的人说用ssh-keygen管理方便,但缺点是需要在本地保存Key验证码.于是便选择了expect来实现.方法也非常简单.
expect是Unix系统中用来进行自动化控制和测试的软件工具,由Don Libes制作,作为Tcl脚本语言的一个扩展,应用在交互式软件中如telnet,ftp,Passwd,fsck,rlogin,tip,ssh等等。该工具利用Unix伪终端包装其子进程,允许任意程序通过终端接入进行自动化控制;也可利用Tk工具,将交互程序包装在X11的图形用户界面中。
我们通过Shell可以实现简单的控制流功能,如:循环、判断等。但是对于需要交互的场合则必须通过人工来干预,比如普通用户使用sudo命令时就需要我们手动输入密码;expect就是能够完成这种自动交互任务,而无需人的干预。Expect的作者Don Libes在1990年开始编写Expect时对Expect做有如下定义:Expect是一个用来实现自动交互功能的软件套件(Expect [is a] software suite for automating interactive tools)。系统管理员可以使用它创建用来实现对命令或程序提供输入的脚本:一般来说这些输入都需要手工输入(比如之前提到的执行sudo程序期望用户从终端输入用户密码)进行的,Expect则可以根据程序的提示 模拟标准输入给程序提供信息来实现交互程序执行。
expect和sh的shell脚本不一样,expect是以 #!/usr/bin/expect 开始,而sh则是以# !/bin/bash开始.使用之前需要安装expect. 这里用到的只是expect的几个命令,expect,spawn和send. 回车符号分别是\r \n
#yum install expect*
新建一个shell脚本文件,以.sh为后缀名的文件.例如:AutoLogin.sh 然后将下边的内容保存到该文件中.
#chmod +x AutoLogin.sh
#./AutoLogin.sh
切记expect脚本的执行方式与sh的执行方式不一样,不能用 sh AutoLogin.sh 来执行,否则会出现以下的错误.
AutoLogin.sh: line 3: spawn: command not found
couldn't read file "password:": no such file or directory
AutoLogin.sh: line 5: send: command not found
AutoLogin.sh: line 6: interact: command not found
#!/usr/bin/expect
set timeout 30
spawn ssh -p 1238 110.110.110.110
expect "password:*"
send "0123456789\r"
expect "*]#"
send "rm -rf /usr/local/lxlabs/kloxo/serverfile/tmpstatsstatsstats/*log
# Mysql database optimization
mysqlcheck -Ao -uroot -p0123456789
# Clear system memory .
echo 3 > /proc/sys/vm/drop_caches
echo 0 > /proc/sys/vm/drop_caches
echo 1 > /proc/sys/vm/drop_caches
swapoff -a
swapon -a
yum clean all
# Restart the service component .
service mysqld restart
service lighttpd restart
echo '*********************************************************';
echo '**** ****';
echo '**** cao zuo jie shu ****';
echo '**** ming ling yi jing zhi xing wan cheng . ****';
echo '**** ****';
echo '**** https://www.myzhenai.com.cn ****';
#!/usr/bin/expect
set timeout 30
spawn ssh -p 1238 110.110.110.110
expect "password:*"
send "0123456789\r"
expect "*]#"
send "sh /home/OptimizationTools.sh\n"
expect "*]#"
send "exit\n"
expect eof
使用expect控制ssh自动登录连接Linux服务器方法
使用expect控制ssh自动登录连接Linux服务器方法
sicnature ---------------------------------------------------------------------
Your current IP address is: 117.68.146.87
Your IP address location: 安徽省合肥市巢湖市电信
Your IP address country and region: 中国
Your current browser is:
Your current system is:
Original content, please indicate the source:
同福客栈论坛 | 蟒蛇科普 | 海南乡情论坛 | JiaYu Blog
sicnature ---------------------------------------------------------------------
Welcome to reprint. Please indicate the source https://www.myzhenai.com.cn/post/1667.html