如何使用php aws sdk启动和停止ec2实例

前端之家收集整理的这篇文章主要介绍了如何使用php aws sdk启动和停止ec2实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
非常新的aws sdk,希望开始.我已经安装了sdk和一切但是如何使用PHP sdk启动ec2实例?一些代码示例确实很有用.
以下是从定义的AMI启动计算机的基本示例:
$image_id  = 'ami-3d4ff254'; //Ubuntu 12.04
$min       = 1;              //the minimum number of instances to start
$max       = 1;              //the maximum number of instances to start
$options   = array(
    'SecurityGroupId' => 'default',//replace with your security group id
    'InstanceType'    => 't1.micro','KeyName'         => 'keypair',//the name of your keypair for auth
    'InstanceInitiatedShutdownBehavior' => 'terminate' //terminate on shutdown
);

require_once('AWSSDKforPHP/sdk.class.PHP');

$ec2 = new AmazonEC2();

$response = $ec2->run_instances($image_id,$min,$max,$options);

if(!$response->isOK()){
    echo "Start Failed\n";
}

这是假设您正确设置了您的AWS凭据…希望这会让您指向正确的方向……

原文链接:https://www.f2er.com/php/130695.html

猜你在找的PHP相关文章