我正在尝试通过boto的ec2.run_instances(...,user_data = USER_DATA)将用户数据加载到Ubuntu 12.04 LTS AMI(ami-a29943cb,但我尝试了一些其他操作都无济于事)。同样,在通过AWS控制台启动实例时,手动提供用户数据也没有成功。我尝试的任何方法在/var/logs/syslog中都没有结果或消息。

USER_DATA看起来类似于以下内容,以字符串形式从文件中读取:

#!/usr/bin/env python

import boto

AWS_BOOTSTRAP_BUCKET  = ''
AWS_ACCESS_KEY_ID     = ''
AWS_SECRET_ACCESS_KEY = ''

# Pull processing script from S3.
print 'Bootstrapping started.....'
print 'Connecting to S3...'
s3     = boto.connect_s3(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY)
bucket = s3.get_bucket(AWS_BOOTSTRAP_BUCKET)
print 'Downloading bootstrap file...'
key    = bucket.get_key('xxx')
key.get_contents_to_filename('xxx')

print 'Importing Bootstrap file...'
import xxx
xxx.process()

# Shut down the EC2 instance running this process.
print 'Shutting down this instance...'
import socket
desired_hostname = socket.gethostname()
ec2 = boto.connect_ec2(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY)
reservations = ec2.get_all_instances()
for reservation in reservations:
    for instance in reservation.instances:
        if desired_hostname in instance.private_dns_name:
            instance.terminate()

我还尝试了将文件上传到公共(public)S3存储桶并以这种方式加载,但再次失败了:
#include
https://s3.amazonaws.com/bucket/file.py

有人在这方面有什么建议吗?我是否完全误解了用户数据/cloud-init的目的,或者该技术只是在我尝试使用的AMI中被破坏了?

最佳答案

很难知道没有错误消息发生了什么,但是您可以在以下几个地方查看:

  • 文件/var/log/cloud-init.log通常包含实例引导过程中发生的任何错误(例如boto导入失败)。
  • 目录/var/lib/cloud/instance将包含下载到实例
  • 的原始脚本和用户数据
  • 您可以通过右键单击实例在AWS控制台内查看/编辑USER_DATA,以查看boto是否正确填充了该实例。

  • 在这些地方查看应该有助于提供清晰度。

    我知道Ubuntu 12.04随附boto 2.2.2:
    root@vanilla-562c:/var/lib/cloud/instance# python
    Python 2.7.3 (default, Apr 20 2012, 22:44:07)
    [GCC 4.6.3] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import boto
    >>> boto.__version__
    '2.2.2'
    

    ..但我想知道它是否可以在运行时在您的PYTHONPATH中实际访问。

    10-05 23:21