I'm working on a script that spins up a fresh EC2 instance with boto and uses the Paramiko SSH client to execute remote commands on the instance. For whatever reason, the Paramiko client is unabled to connect, I get the error:

Traceback (most recent call last):
  File "scripts/sconfigure.py", line 29, in <module>
    ssh.connect(instance.ip_address, username='ubuntu', key_filename=os.path.expanduser('~/.ssh/test'))
  File "build/bdist.macosx-10.3-fat/egg/paramiko/client.py", line 291, in connect
  File "<string>", line 1, in connect
socket.error: [Errno 61] Connection refused

I can ssh in fine manually using the same key file and user. Has anyone run into issues using Paramiko? My full code is below. Thanks.

import boto.ec2, time, paramiko, os
# Connect to the us-west-1 region
ec2 = boto.ec2.regions()[3].connect()
image_id = 'ami-ad7e2ee8'
image_name = 'Ubuntu 10.10 (Maverick Meerkat) 32-bit EBS'
new_reservation = ec2.run_instances(
    image_id=image_id,
    key_name='test',
    security_groups=['web'])

instance = new_reservation.instances[0]

print "Spinning up instance for '%s' - %s. Waiting for it to boot up." % (image_id, image_name)
while instance.state != 'running':
    print "."
    time.sleep(1)
    instance.update()

print "Instance is running, ip: %s" % instance.ip_address

print "Connecting to %s as user %s" % (instance.ip_address, 'ubuntu')
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(instance.ip_address, username='ubuntu', key_filename=os.path.expanduser('~/.ssh/test'))
stdin, stdout, stderr = ssh.exec_command('echo "TEST"')
print stdout.readlines()
ssh.close()
link|improve this question

73% accept rate
+1 good question! I've never done anything with my EC2 account, this will give me some impetus. – jcomeau_ictx May 17 '11 at 2:35
1  
have you tried specifying the port as the 2nd parameter in ssh.connect()? – jcomeau_ictx May 17 '11 at 3:43
1  
Thanks for the suggestion but I have. I believe I have figured it out though. Even though the instance status is "running" according to boto, there seems to be a delay for when it will actually accept any SSH connections. Adding a time.slep(25) before trying to make the connection seems to be enough, but I'm going to do some more testing. – rr. May 17 '11 at 3:48
great! once you get it working perhaps you could answer your own question so it's there for the next guy who runs into this! – jcomeau_ictx May 17 '11 at 3:54
exactly. doing time.sleep(60) will solve the problem. But your code inspires me about the paramiko part. thanks dude. – da_zhuang May 3 at 15:01
feedback

1 Answer

up vote 4 down vote accepted

I seem to have figured this out by trial and error. Even though the instance status is "running" according to boto, there is a delay for when it will actually allow an SSH connection. Adding a "time.sleep(30)" before the "ssh.connect(...)" seems to do the trick for me, though this may vary.

link|improve this answer
1  
Probably 'running' means that the image itself is booting? So you have to wait for the OS to start, and sshd to start. – Douglas Leeder May 17 '11 at 10:59
Yea, that makes the most sense. – rr. May 17 '11 at 15:46
I do the same as you (with 45 seconds :p) and that's the only way I found to do it even if I dislike to do a sleep(x) – Genschi Jan 19 at 16:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.