Automating Tasks with EXPECT
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
Free Webinar: Hadoop
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Some of key questions to be discussed are:
- What is the “typical” Hadoop cluster and what should be installed on the different machine types?
- Why should you consider the typical workload patterns when making your hardware decisions?
- Are all microservers created equal for Hadoop deployments?
- How do I plan for expansion if I require more compute, memory, storage or networking?
| Designing Electronics with Linux | May 22, 2013 |
| Dynamic DNS—an Object Lesson in Problem Solving | May 21, 2013 |
| Using Salt Stack and Vagrant for Drupal Development | May 20, 2013 |
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
- Designing Electronics with Linux
- New Products
- Linux Systems Administrator
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- Senior Perl Developer
- Technical Support Rep
- UX Designer
- Dynamic DNS—an Object Lesson in Problem Solving
- Web & UI Developer (JavaScript & j Query)
- Using Salt Stack and Vagrant for Drupal Development
- Reply to comment | Linux Journal
5 hours 40 min ago - Dynamic DNS
6 hours 14 min ago - Reply to comment | Linux Journal
7 hours 13 min ago - Reply to comment | Linux Journal
8 hours 3 min ago - Not free anymore
12 hours 5 min ago - Great
15 hours 52 min ago - Reply to comment | Linux Journal
16 hours 25 sec ago - Understanding the Linux Kernel
18 hours 15 min ago - General
20 hours 44 min ago - Kernel Problem
1 day 6 hours ago




Comments
interact hangs out when I cat a large file
Hi,
I would like to know whether there is any fix for to prevent interact command from hanging out when I cat a large inside a expect spawned process. Send in your reply to gururaj.srinivasarao@gmail.com
I found an amazing tutorial
you can check out this amazing tutorial its the best
http://exploring-expect-tcl.blog.com/2009/06/03/exploring-expect/
Very Good knowledge shaired
Thanks.
This is very good for system admins.
How to write regular expression for welcome message?
After login welcome message shows date and time .. How do we write RE for it ? Any idea.
TIA
Thanks !!! It helped me alot
Thanks !!! It helped me alot !!!!!
Expect buffer
Hello,
I want to know the size of expect_out(buffer).I want large amount of data to be moved to file using expect buffer but match_max did not help.
Can you please suggest me solution?
Thanks,
pankaj
Telnet session on a telnet session through EXPECT
Hi All,
I want to telnet to server A followed by another telnet to Server B from Server A.
I could create the expect scripts to telnet to a single server. But then if i send command 'send "telnet server B\r"`to Server A, it doesnot respond properly.
Please Help. do i need to spawn the second telnet process? If yes, then how would i pass the spawn id information back to local machine.
ThanksInAdvance,
Sapnesh
Your guide is very helpfull
Hi,
I'm seeking the guide that can help me solveing the auto task rather than crond. Now i found it. Great help!
Great solution
This article gave us a great hint to creating a solution to rebooting a Perle Specialix Jetstream terminal server for a failover test. The 'autoexpect' utility gave us the solution we needed in 5 minutes after we found the article. Great stuff! And the article is 8 years old at that!
Please renew my subscription... Oh yeah I just did renew it...
Great help! Thanks!
Great help! Thanks!
Re: System Administration: Automating Tasks with EXPECT
It was a great info I was earlier looking for!
Long live :-)
Kumar
Re: System Administration: Automating Tasks with EXPECT
How to automate telnet through this autoexpect.....can someone help me out....
thanks in advance
S.Sriram
Automating Telnet with expect
Hi Sriram,
This is too easy.
Just type
$ autoexpect -f telnet.exp telnet
and then enter your username and password
execute any command if u want on remote machine. Then finally exit.
After this telnet.exp file will be created.
Open telnet.exp file and delete the lines containing time stamp for your login. Save the changes. And run ./telnet.exp.
Hope this helps :)
Yash
Re: System Administration: Automating Tasks with EXPECT
this acticle is too sample to help someone understand the Expect
Re: System Administration: Automating Tasks with EXPECT
you just have to do :
autoexpect telnet X.X.X.X
then do like you were doing a standart telnet, enter all the command you need.
then, quit the telnet and a script will be generated in your folder.
juste lunch the script to see what you do before.
I hope it will help you.
Phil.
I was just wondering if
I was just wondering if anyone knew how to make the ip address you are telnet into a variable. I am using a script that was created by the autoexpect feature, but i want to be able to choose the ip address i am going to telnet. thanks for your help.
Telnet - variable IP
Here you go, Host name or IP will work.
# Get the Host name that you are going to work on
send_user "Input Host name here: "
expect_user -re "(.*)\n" {set HostName $expect_out(1,string) }
send_user "\n"
spawn telnet $HostName