English 中文(简体)
如何最好地让多个用户控制EC2实例?
原标题:How best to have many users control EC2 instances?

摘要:如何让几个开发人员能够启动停止共享的Amazon EC2实例

我有一个项目,我使用EC2实例来完成日复一日的工作,所以我走进办公室时启动服务器,离开时停止服务器。我和其他几个开发人员一起工作,我们都使用这个EC2实例。我们希望每天第一个开始工作的人来启动实例,最后一个回家的人来停止实例。。。但他们无法启动或停止我的实例。(如果我授予他们启动权限,他们可以从我的AMI启动其他实例,但那将是一个新实例。这个特定实例是一个持久机器,状态为昨天的状态。)

我们都在一个统一的计费帐户上,但这没有授予访问权限。我正在研究亚马逊IAM,但它似乎需要对我们当前的用户设置进行彻底改革(1个开发者=1个AWS帐户,所有帐户都在合并计费下),如果它不起作用,或者有更好的方法来实现同样的目标,这将是非常具有破坏性的。(坦率地说,我还没有让我的玩具脚本在IAM下工作,尽管我怀疑IAM是解决这个问题的正确方法——我需要更多地阅读它)

关于如何最好地管理共享实例,有什么建议吗?

谢谢

PS由于各种原因,我们不希望有一个基于cron的解决方案;如果我们都是带笔记本电脑的移动设备,没有固定的基础设施,那会在哪台机器上运行?我们假设的是哪个时区?cronjob以哪个用户身份运行?

问题回答

AWS身份和访问管理:http://aws.amazon.com/iam/

使用单独的帐户进行生产和开发。将开发帐户登录信息分发给每个开发人员。他们可以从主AWS管理控制台启动/停止EC2实例。

如果您想要管理控制台之外的解决方案,请使用EC2 API创建一个小型应用程序,该应用程序可以在本地运行以启动/停止实例。

类似于Elasticfox可能也是一个可行的解决方案。

这些是简单的想法。

编辑:2011年2月14日AWS宣布IAM用户可以登录到管理控制台。





相关问题
Mount windows shared drive to MWAA in bootscript

In MWAA startup script sudo yum install samba-client cifs-utils -y sudo mount.cifs //dev/test/drop /mnt/dev/test-o username=testuser,password= pwd ,domain=XX Executing above commonds giving error - ...

How to get Amazon Seller Central orders programmatically?

We have been manually been keying Amazon orders into our system and would like to automate it. However, I can t seem to figure out how to go about it. Their documentation is barely there. There is: ...

Using a CDN like Amazon S3 to control access to media

I want to use Amazon S3/CloudFront to store flash files. These files must be private as they will be accessed by members. This will be done by storing each file with a link to Amazon using a mysql ...

unable to connect to database on AWS

actually I have my website build with Joomla hosted on hostmonster but all Joomla website need a database support to run this database is on AWS configuration files need to be updated for that I ...

Using EC2 Load Balancing with Existing Wordpress Blog

I currently have a virtual dedicated server through Media Temple that I use to run several high traffic Wordpress blogs. Both tend to receive sudden StumbleUpon traffic surges that (I m assuming) ...

SSL slowness in EC2

We ve deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web ...

热门标签