我试图将用户数据加载到一个Ubuntu 12.04 LTS AMI(AMI-a29943cb,但我已经尝试了其他几个人没有用),通过伯特的ec2.run_instances(...,USER_DATA = USER_DATA)。 同样,我曾与同时通过AWS控制台启动实例手动提供用户数据没有成功。 有没有结果或消息在/ var /日志/ 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()
我曾尝试进一步将文件上传到公共S3存储和加载它以这种方式,再次无果:
#include
https://s3.amazonaws.com/bucket/file.py
有没有人在这方面有什么建议吗? 难道我完全误解的用户数据/宗旨云init或在技术仅仅停留在AMI我想利用坏了吗?