Expect and interact


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Expect and interact
# 1  
Old 02-12-2015
Expect and interact

I am trying to log on to server as a normal user and then sudo to root.

I am using below expect script.
Code:
[linux@linux]$ cat SC.orig 
expect <<EOF # | tee -a $LOGFILE 
spawn sshpass -p "mypassword" ssh -l myid  nim
expect "$"
send  "sudo su - root\n"
expect "Password:"
send "mypassword\n";
sleep 4
interact 
[linux@linux]$

When I run this .. I get below
Code:
[linux@linux]$ SC.orig 
/home/linux/bin/SC.orig: line 9: warning: here-document at line 1 delimited by end-of-file (wanted `EOF')
spawn sshpass -p mypassword ssh -l myid nim
sudo su - root
mypassword
Last unsuccessful login: Fri Jan  9 09:44:23 2015 on ssh from abcxyx
$ sudo su - root
mypassword
Password:
TERM=xterm
<<< 
[nim:/home/root] [linux@linux]$

This script is authenticating me to remote server and then doing sudo to root but then exits from shell and comes back to my local shell.

I want my script to enter passwords and then take me to shell.

Could you please help me with this script ?


Moderator's Comments:
Mod Comment Please use code tags next time for you code and data

Last edited by vbe; 02-12-2015 at 07:16 AM.. Reason: code tags please
# 2  
Old 02-12-2015
You are using a here-document but there is no closing EOF.
When you say <<EOF...there should be an EOF to close the here-document.
# 3  
Old 02-12-2015
Quote:
Originally Posted by sri243
This script is authenticating me to remote server and then doing sudo to root but then exits from shell and comes back to my local shell.

I want my script to enter passwords and then take me to shell.
Shell does not work that way. Expect does not work that way.

You would have to write an expect program which read input from the keyboard and fed it into the remote shell.

It would be much better for you to arrange sudo to allow your user to su without a password. Then you could do:

Code:
ssh -t username@host exec sudo su -

...and it would do it.

For ssh, you can use keys instead of sshpass. sshpass is very dangerous, it displays the password in ps for anyone to see.
This User Gave Thanks to Corona688 For This Post:
# 4  
Old 02-12-2015
Yes, this is working for me. Thank you
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Expect script - Interact help

Hi Guys, Further to my post yesterday I have got round the issue of not being able to use expect by using one of our unix machines to have the script running instead of the jumpbox itself. However my issue is I now have an extra bit it the script which is shh to the jumpbox which requires a ras... (1 Reply)
Discussion started by: mutley2202
1 Replies

2. Shell Programming and Scripting

Expect Scripting - Using the "interact" command?

Hello All, I am writing an Expect Script to execute some commands over ssh then exit the script. The script works just fine if I automate everything and assuming the correct password was entered. So this Expect Script gets executed from a Bash script... From the Bash script I pass along an... (0 Replies)
Discussion started by: mrm5102
0 Replies

3. Shell Programming and Scripting

can a nohup'ed ksh script interact with user

I have a long running ksh script that I need to run with "nohup" in the backgound which is all well and good but at the very start of the script it needes to output to the screen to query the user and accept a response before continuing. Any thoughts on how to accomplish this other than... (11 Replies)
Discussion started by: twk
11 Replies

4. Shell Programming and Scripting

Scripts to Interact with Webpages

Hi, Is it possible to have a script to interact with webpages. I want to create a script that logs a user into a specific site, and is able to get/post information. Would anyone give me instructions on how it's should be done, and where I can find information on starting it out. I know... (2 Replies)
Discussion started by: Pztar
2 Replies

5. Shell Programming and Scripting

Expect script exiting too fast if used without interact.

Hi I'm working on an Expect script that is supposed to log-into a remote server and run some steps and exit. In the script I first spawn a 'ssh' session to the server and then after logging in I 'send' all the necessary steps ( with a '\r' at the end, so that they get automatically executed the... (3 Replies)
Discussion started by: clakkad
3 Replies

6. UNIX for Dummies Questions & Answers

Expect "interact" fails when called from another script

So, I have an expect script (let's call it expect.exp) that takes 3 arguments. It logs into a remote server, runs a set of commands, then hands control over to the user by the "interact" command. If I call this script from the command line, it works properly. Now I'd like to apply this script... (2 Replies)
Discussion started by: treesloth
2 Replies

7. Shell Programming and Scripting

How to make shell script interact with program

Hello all! I have a C program that runs on a loop, prompting the user for input until it is exited. I want to create a shell script that can run this program and provide input. How can I do this? I have investigated 'expect' and piping to stdin, but haven't had any success. Any help is... (2 Replies)
Discussion started by: radish04
2 Replies

8. UNIX for Advanced & Expert Users

Interact to windows server from unix box

Hello - My requirement is like this... I have flat file which is sitting in windows server... My shell script is running in unix box. Shell script loads the flat file into oracle through sqlloader. So script needs to pickup the flat file from windows box. I need to refer windows location in... (8 Replies)
Discussion started by: govindts
8 Replies

9. Shell Programming and Scripting

Expect - Interact output hangs when large output

Hello, I have a simple expect script I use to ssh to a workstation. I then pass control over to the user with interact. This script works fine on my HP and Mac, but on my Linux Desktop, I get a problem where the terminal hangs when ever I execute a command in the interact session that requires a... (0 Replies)
Discussion started by: natedog
0 Replies

10. Shell Programming and Scripting

can a shell script interact with database?

Hi All, Language like C,Java can interact with database..and can use database information .. can a shall script do this? if yes thn plz guide me..... thankx (7 Replies)
Discussion started by: johnray31
7 Replies
Login or Register to Ask a Question