Amazon Web Services 接口
Amazon Web Services 兼容接口
CloudStack可将AWS API调用转换为CloudStack本地调用,使得用户可以继续使用已有的AWS兼容工具。这个转换服务作为单独的web应用,就像在tomcat上的CloudStack管理服务一样,只是监听不同的端口。AWS兼容接口除了提供S3 REST API外,还提供EC2 SOAP和Query APIs。
注解
这项服务,之前是由CloudBridge独立软件实现的。现在已经完全集成到CloudStack管理服务中。
警告
EC2 Query API和S3 API兼容接口的支持工作正在进行中。S3的兼容API提供了一种在管理服务器的文件系统中存储数据的方法,它不是S3 后端实现的。
局限性
只支持使用基本网络的zone。
仅对全新安装的CloudStack可用。通过旧版本升级的不可用。
如弹性IP(EIP)和弹性负载均衡(ELB)这些特性,仅对有Citrix NetScaler设备的架构可用。用户接入有NetScaler设备的zone时,需要使用NetScaler-enabled网络方案(DefaultSharedNetscalerEIP和ELBNetworkOffering)。
支持的API版本
遵守亚马逊WDSL版本的EC2接口将于2010-11-15过期。可在 `http://ec2.amazonaws.com/doc/2010-11-15/ [http://ec2.amazonaws.com/doc/2010-11-15/](http://ec2.amazonaws.com/doc/2010-11-15/)\`获取。
接口与EC2命令行工具*EC2 tools v.1.3.6230*是兼容的。可在 http://s3.amazonaws.com/ec2-downloads/ec2-api-tools-1.3-62308.zip.
注解
支持更新版本的EC2 API的工作正在进行
使能EC2和S3兼容接口
提供AWS API兼容性的软件随CloudStack一起安装。在使用之前,你必须使能服务并操作一些安装步骤。
将全局配置参数中的每项服务设置为true。详看 *Setting Global Configuration Parameters*.
创建一组匹配亚马逊服务方案的名称。这个可以按照管理员操作手册在CloudStack界面上进行操作。
警告
除了可能使用的EC2实例类型,确保已包含亚马逊默认服务方案,m1.small。
如果按照步骤1设置了配置参数后,没有重启,那么重启管理服务器。
- # service cloudstack-management restart
以下内容提供了这些步骤的细节
开启服务
为了使能EC2和S3兼容服务,你需要将 enable.ec2.api \和 *enable.s3.api 的值设置为true。以使能你所需要的服务。这个可以在CloudStack的界面上的\Global Settings*或者API来实现。
下面的截图展示如何通过GUI使能这些服务。
使用CloudStack API最简单的方法是使用集成接口,这个接口可以使用无验证调用。在全局设置中将这个接口设置为8096,然后调用 updateConfiguration 。下面的URL展示如何使用。
- http://localhost:8096/client/api?command=updateConfiguration&name=enable.ec2.api&value=true
- http://localhost:8096/client/api?command=updateConfiguration&name=enable.ec2.api&value=true
一旦使能这些服务,重启服务器。
创建EC2兼容服务方案
可以定义兼容 Amazon EC2实例类型 http://aws.amazon.com/ec2/instance-types/ API名称的计算服务方案。(例如m1.small,m1.large),这个可以通过CloudStack界面进行操作。在 Service Offerings 中选择 Compute offering ,创建一个新的计算方案或者修改已存在的皆可。确保名称与EC2实例类型API名称匹配。下面的截图将展示如何操作。
修改AWS API端口
注解
(可选)AWS API在端口7080监听请求。如果你希望监听另外的端口,可通过如下步骤修改:
编辑文件
/etc/cloudstack/management/server.xml
,/etc/cloudstack/management/server-nonssl.xml
, ``/etc/cloudstack/management/server-ssl.xml` `.在每个文件中找出
的标签,在这个标签下,定位到<Connector executor=”tomcatThreadPool-internal” port= ….< 将这个端口改为你想用的任何端口,并保存文件。
重启管理服务器。
如果你重装CloudStack,你需要重新使能服务并更新端口。
AWS API用户安装
总的来说,用户不需要察觉CloudStack所提供的翻译服务。只需将AWS API调用发送到CloudStack端,然后被转换为CloudStack API。Amazon EC2兼容接口用户可继续使用已有的EC2工具和脚本,并通过指定管理服务器的端及合适的用户证书,将它们用于CloudStack部署。为此,用户需要进行如下步骤的操作:
生成用户证书
向服务注册。
为了方便,设置关于EC2 SOAP命令行工具的环境变量。
AWS API命令行工具安装
为了使用EC2命令行工具,用户需要操作以下步骤:
确定你具有正确版本的EC2工具。所支持的版本可以在 `http://s3.amazonaws.com/ec2-downloads/ec2-api-tools-1.3-62308.zip [http://s3.amazonaws.com/ec2-downloads/ec2-api-tools-1.3-62308.zip](http://s3.amazonaws.com/ec2-downloads/ec2-api-tools-1.3-62308.zip)\`_获取。
设置EC2环境变量。可在每次使用服务时设置或者写入合适的shell profile文件中。将端(如EC2_URL)替换为合适的CloudStack管理服务器地址和端口。可在bash文件中做如下操作。
- $ export EC2_CERT=/path/to/cert.pem
- $ export EC2_PRIVATE_KEY=/path/to/private_key.pem
- $ export EC2_URL=http://localhost:7080/awsapi
- $ export EC2_HOME=/path/to/EC2_tools_directory
使用超时设定确保AWS API命令完成
Amazon EC2命令行工具有默认的连接超时。在CloudStack中使用时,某些命令可能需要更长的超时。如果你发现命令在超时的时间内未完成,你可以指定用户定制超时。你可以将下面的可选命令行参数添加到任何支持CloudStack的EC2命令。
指定连接超时(秒)
- --connection-timeout TIMEOUT
指定请求超时(秒)
- --request-timeout TIMEOUT
例如:
- ec2-run-instances 2 –z us-test1 –n 1-3 --connection-timeout 120 --request-timeout 120
注解
CloudStack中的超时可选参数并非特定
支持AWS API调用
AWS API接口被使能后,CloudStack可支持下面的Amazon EC2命令。对于少数命令,CloudStack与Amazon EC2版本间有一些差异,差异已被标识。对于使用SOAP调用建立工具的用户,与之相关的命令也已给出。
表 1.弹性IP API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-allocate-address | AllocateAddress | associateIpAddress |
ec2-associate-address | AssociateAddress | enableStaticNat |
ec2-describe-addresses | DescribeAddresses | listPublicIpAddresses |
ec2-diassociate-address | DisassociateAddress | disableStaticNat |
ec2-release-address | ReleaseAddress | disassociateIpAddress |
表 2.可用Zone API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-describe-availability-zones | DescribeAvailabilityZones | listZones |
表 3.镜像API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-create-image | CreateImage | createTemplate |
ec2-deregister | DeregisterImage | DeleteTemplate |
ec2-describe-images | DescribeImages | listTemplates |
ec2-register | RegisterImage | registerTemplate |
表 4.镜像属性API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-describe-image-attribute | DescribeImageAttribute | listTemplatePermissions |
ec2-modify-image-attribute | ModifyImageAttribute | updateTemplatePermissions |
ec2-reset-image-attribute | ResetImageAttribute | updateTemplatePermissions |
表 5.实例API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-describe-instances | DescribeInstances | listVirtualMachines |
ec2-run-instances | RunInstances | deployVirtualMachine |
ec2-reboot-instances | RebootInstances | rebootVirtualMachine |
ec2-start-instances | StartInstances | startVirtualMachine |
ec2-stop-instances | StopInstances | stopVirtualMachine |
ec2-terminate-instances | TerminateInstances | destroyVirtualMachine |
表 6 实例属性对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-describe-instance-attribute | DescribeInstanceAttribute | listVirtualMachines |
表 7 密钥对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-add-keypair | CreateKeyPair | createSSHKeyPair |
ec2-delete-keypair | DeleteKeyPair | deleteSSHKeyPair |
ec2-describe-keypairs | DescribeKeyPairs | listSSHKeyPairs |
ec2-import-keypair | ImportKeyPair | registerSSHKeyPair |
表 8.密码API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-get-password | GetPasswordData | getVMPassword |
表 9.安全组API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-authorize | AuthorizeSecurityGroupIngress | authorizeSecurityGroupIngress |
ec2-add-group | CreateSecurityGroup | createSecurityGroup |
ec2-delete-group | DeleteSecurityGroup | deleteSecurityGroup |
ec2-describe-group | DescribeSecurityGroups | listSecurityGroups |
ec2-revoke | RevokeSecurityGroupIngress | revokeSecurityGroupIngress |
表 10.快照API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-create-snapshot | CreateSnapshot | createSnapshot |
ec2-delete-snapshot | DeleteSnapshot | deleteSnapshot |
ec2-describe-snapshots | DescribeSnapshots | listSnapshots |
表 11.卷API对应表
EC2命令 | SOAP调用 | CloudStack API调用 |
---|---|---|
ec2-attach-volume | AttachVolume | attachVolume |
ec2-create-volume | CreateVolume | createVolume |
ec2-delete-volume | DeleteVolume | deleteVolume |
ec2-describe-volume | DescribeVolume | listVolumes |
ec2-detach-volume | DetachVolume | detachVolume |
示例
有很多工具可以提供接入AWS兼容API。本节中将提供CloudStack用户一些使用用例。
Boto示例
Boto是其中一个。Python包可以在 https://github.com/boto/boto 获取。本节中提供两个使用Boto并已被CloudStack AWS API接口测试过的Python脚本示例。
第一个是EC2示例,将访问和加密密钥改成你自己的,并更新端。
示例1.EC2 Boto示例
- #!/usr/bin/env python
- import sys
- import os
- import boto
- import boto.ec2
- region = boto.ec2.regioninfo.RegionInfo(name="ROOT",endpoint="localhost")
- apikey='GwNnpUPrO6KgIdZu01z_ZhhZnKjtSdRwuYd4DvpzvFpyxGMvrzno2q05MB0ViBoFYtdqKd'
- secretkey='t4eXLEYWw7chBhDlaKf38adCMSHx_wlds6JfSx3z9fSpSOm0AbP9Moj0oGIzy2LSC8iw'
- def main():
- '''Establish connection to EC2 cloud'''
- conn =boto.connect_ec2(aws_access_key_id=apikey,
- aws_secret_access_key=secretkey,
- is_secure=False,
- region=region,
- port=7080,
- path="/awsapi",
- api_version="2010-11-15")
- '''Get list of images that I own'''
- images = conn.get_all_images()
- print images
- myimage = images[0]
- '''Pick an instance type'''
- vm_type='m1.small'
- reservation = myimage.run(instance_type=vm_type,security_groups=['default'])
- if __name__ == '__main__':
- main()
第二个是S3示例。S3接口在CloudStack中已被废弃。如果要使用,需要考察下RiakCS,Ceph或者GlusterFS系统。这个示例已完成并可用于其他S3端。
示例2.S3 Boto示例
- #!/usr/bin/env python
- import sys
- import os
- from boto.s3.key import Key
- from boto.s3.connection import S3Connection
- from boto.s3.connection import OrdinaryCallingFormat
- apikey='ChOw-pwdcCFy6fpeyv6kUaR0NnhzmG3tE7HLN2z3OB_s-ogF5HjZtN4rnzKnq2UjtnHeg_yLA5gOw'
- secretkey='IMY8R7CJQiSGFk4cHwfXXN3DUFXz07cCiU80eM3MCmfLs7kusgyOfm0g9qzXRXhoAPCH-IRxXc3w'
- cf=OrdinaryCallingFormat()
- def main():
- '''Establish connection to S3 service'''
- conn =S3Connection(aws_access_key_id=apikey,aws_secret_access_key=secretkey, \
- is_secure=False, \
- host='localhost', \
- port=7080, \
- calling_format=cf, \
- path="/awsapi/rest/AmazonS3")
- try:
- bucket=conn.create_bucket('cloudstack')
- k = Key(bucket)
- k.key = 'test'
- try:
- k.set_contents_from_filename('/Users/runseb/Desktop/s3cs.py')
- except:
- print 'could not write file'
- pass
- except:
- bucket = conn.get_bucket('cloudstack')
- k = Key(bucket)
- k.key = 'test'
- try:
- k.get_contents_to_filename('/Users/runseb/Desktop/foobar')
- except:
- print 'Could not get file'
- pass
- try:
- bucket1=conn.create_bucket('teststring')
- k=Key(bucket1)
- k.key('foobar')
- k.set_contents_from_string('This is my silly test')
- except:
- bucket1=conn.get_bucket('teststring')
- k = Key(bucket1)
- k.key='foobar'
- k.get_contents_as_string()
- if __name__ == '__main__':
- main()