10

我正在编写一个脚本,该脚本使用 boto 启动一个新的 EC2 实例,并使用 Paramiko SSH 客户端在实例上执行远程命令。无论出于何种原因,Paramiko 客户端无法连接,我收到错误消息:

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

我可以使用相同的密钥文件和用户手动 ssh。有人在使用 Paramiko 时遇到问题吗?我的完整代码如下。谢谢。

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()
4

5 回答 5

10

我似乎已经通过反复试验弄清楚了这一点。即使根据 boto,实例状态为“正在运行”,但实际允许 SSH 连接的时间仍有延迟。在“ssh.connect(...)”之前添加一个“time.sleep(30)”似乎对我有用,尽管这可能会有所不同。

于 2011-05-17T04:17:47.827 回答
3

检查它的 ssh 可用的方法是确保它的两个状态检查都通过。在 Web UI 上,它看起来像这样: 在此处输入图像描述

并使用 boto3 (最初的问题使用 boto 但它是 5 年前),我们可以这样做:

session = boto3.Session(...)
client = session.client('ec2')
res = client.run_instances(...) # launch instance
instance_id = res['Instances'][0]['InstanceId']

while True:
    statuses = client.describe_instance_status(InstanceIds=[instance_id])
    status = statuses['InstanceStatuses'][0]
    if status['InstanceStatus']['Status'] == 'ok' \
            and status['SystemStatus']['Status'] == 'ok':
        break
    print '.'
    time.sleep(5)
print "Instance is running, you are ready to ssh to it"
于 2016-04-26T02:50:14.113 回答
2

为什么不boto.manage.cmdshell改用?

cmd = boto.manage.cmdshell.sshclient_from_instance(instance,
                                                   key_path,
                                                   user_name='ec2_user')

(代码取自ec2_launch_instance.py的第 152 行)

有关可用cmdshell命令,请查看cmdshell.pySSHClient中的类。

于 2012-11-12T14:35:02.020 回答
1

我最近遇到了这个问题。“正确”的方法是先启动 close() 然后重新打开连接。然而在旧版本中,close() 被破坏了。

使用此版本或更高版本,应修复: https ://github.com/boto/boto/pull/412

“正确”的方法:

newinstance = image.run(min_count=instancenum, max_count=instancenum, key_name=keypair, security_groups=security_group, user_data=instancename, instance_type=instancetype, placement=zone)
time.sleep(2)
newinstance.instances[0].add_tag('Name',instancename)

print "Waiting for public_dns_name..."
counter = 0
while counter < 70:
    time.sleep(1)
    conn.close()
    conn = boto.ec2.connection.EC2Connection(ec2auth.access_key,ec2auth.private_key)
    startedinstance = conn.get_all_instances(instance_ids=str(newinstance.instances[0].id))[0]
    counter = counter + 1
    if str(startedinstance.instances[0].state) == "running":
        break
    if counter == 69:
        print "Timed out waiting for instance to start."
print "Added: " + startedinstance.instances[0].tags['Name'] + " " + startedinstance.instances[0].public_dns_name
于 2012-06-12T18:15:35.553 回答
0

我最近查看了这段代码,我对代码有一个建议,您可以尝试“wait_until_running()”,而不是运行while循环来检查实例是否正在运行。

以下是示例代码...

client = boto3.resource(
    'ec2',
    region_name="us-east-1"
)

Instance_ID = "<your Instance_ID>"
instance = client.Instance(Instance_ID)
instance.start()
instance.wait_until_running()

之后尝试编写 ssh 连接代码。

于 2019-05-18T10:41:55.170 回答