In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-14 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/03 Report--
Expext概述
Expect是建立在tcl基础上的一个工具,Expect是用来自动化控制和测试的工具。主要解决shell脚本中不可交互的问题。有助于大规模的系统运维工作。在日常的运维与开发中,常常需要运城登录到服务器,然而登录的过程却是个需要交互的过程,可能会要输入yes/no等信息,使用Expect脚本即可实现免交互操作。
Expect安装
挂载光盘
制作本地YUM源
执行安装命令
yum install expect -y
基本命令send
向进程发送字符串,用于模拟用户的输入,该命令不能自动回车换行,一般要加\r (回车)。
expect
expect的一个内部命令,判断上次输出结果里是否包含指定的字符串,如果有则立即返回,否则就等待超时时间后返回。只能捕捉由spawn启动的进程的输出。
spawn
启动进程,并跟踪后续交互信息
interact
执行完成后保持交互状态,把控制权交给控制台
Timeout
指定超时时间,过期则继续执行后续指令
单位:秒
timeout -1 为永不超时
默认的timeout是10秒
exp_continue
允许expect继续向下执行指令
send_user
回显命令,相当于的echo输出
$arvg 参数数组
Expect脚本可以接受从bash传递的参数。可以使用[lindex $arvg n]获得,n从0开始,分别表示第一个,第二个,第三个为参数...参数
Expect脚本必须以interact或expect ecof结束,执行自动化任务通常expect eof就够了
expect eof实在等待结束标志。由spawn启动的命令在结束时会产生一个eof标记,expect eof即在等待这个标记
Expect语法单分支语法expect "passwd:" {send"mypasswd\r";}多分支语法expect"aaa"{send"AAA\r"}expect"aaa"{send"AAA\r"}expect"aaa"{send"AAA\r"}//Send命令不具备回车换行功能,一般要加\或\nexpect{"aaa"{send"AAA\r"}"bbb"{send"BBB\r"}"ccc"{send"CCC\r"}}//只要匹配上了任何一个,执行项硬的send语句后退出该expect语句expect{"aaa"{send"AAA";exp_continue}"bbb"{send"BBB";exp_continue}"ccc"{send"CCC"}}//exp_continue表示继续后面的匹配,若匹配上了aaa,执行完send语句后还要继续往下匹配bbb-re 参数表示匹配正则表达式Expect执行方式
1.直接执行
案例演示:
SSH登录
首次登陆
正常登录
连接被拒绝,可能ssh没开,或端口号不对,亦或是防火墙限制
没有该连接地址
[root@localhost ~]# vim a.sh#!/usr/bin/expect //Expect二进制文件的路径#超时时间set timeout 20 //20秒等待时间log_file test.log //日志文件log_user 1 //日志用户#参数传入set hostname [lindex $argv 0] //追加参数0,统计变量并加载第1位置参数set password [lindex $argv 1] //追加参数1,统计变量并加载第2位置参数#追踪命令spawn ssh root@$hostname //追踪命令#捕捉信息并匹配免交互执行expect { //捕捉提示信息 "Connection refused" exit //捕捉到拒接连接信息即退出 "service not konwn" exit //捕捉到服务为开启信息即退出 "(yes/no)" // 捕捉yes或no参数 {send "yes\r";exp_continue} //输入yes并继续执行 "*password" // 捕捉参数 {send "$password\r"} //输入密码参数 }#控制权交予控制台interact //控制权转交控制台人为输入exit //退出脚本[root@localhost ~]# chmod +x a.sh //授予脚本执行权限[root@localhost ~]# ./a.sh 192.168.235.134 123123 //运行脚本远程连接spawn ssh root@192.168.235.134root@192.168.235.134's password: Last login: Thu Oct 10 15:13:27 2019 from 192.168.235.1 //已成功远程登录[root@localhost ~]# exit 登出Connection to 192.168.235.134 closed. //退出远程登录
2.嵌入执行
案例演示:
创建用户jarry,密码123123
[root@localhost ~]# vim c.sh#!/bin/bash user=$1password=$2#非交互命令放expect外面useradd $user#开始交互expect
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.