有没有办法使用PHP amazon SDK(或亚马逊的API命令行工具)获取EC2实例的公共DNS?
我尝试了这个PHP代码(以及其他代码),但它不起作用:
require_once '/full/path/sdk.class.php';
$ec2 = new AmazonEC2();
$response = $ec2->describe_regions();
print_r($response);
以及
require_once '/full/path/sdk.class.php';
$ec2 = new AmazonEC2();
$response = $ec2->describe_instances(array(
'Filter' => array(
array('Name' => 'availability-zone', 'Value' => 'eu-west-1')
)
));
print_r($response);
但我无法在回复中看到公共dns
答案 0 :(得分:7)
如果您在实例本身上运行此操作,则可以访问AWS的内部元数据端点:
$hostname = file_get_contents('http://169.254.169.254/latest/meta-data/public-hostname');
http://169.254.169.254/latest/meta-data/
会为您提供可供您使用的各种元数据的列表。目前:
ami-id
ami-launch-index
ami-manifest-path
block-device-mapping/
hostname
instance-action
instance-id
instance-type
kernel-id
local-hostname
local-ipv4
mac
metrics/
network/
placement/
profile
public-hostname
public-ipv4
public-keys/
reservation-id
security-groups
答案 1 :(得分:4)
显然,您想要检索区域eu-west-1
中的Amazon EC2个实例(这对于'可用性区'来说不是正确值。)。但是,您没有指定任何区域和所有服务默认为美国东部地区,请参阅AWS团队对相关问题describeInstances() is only giving me instances in us-east的回复:
虽然您无法在一次通话中获取所有地区的数据,但您可以 在每个区域中调用describe_instances()方法。
$ec2 = new AmazonEC2(); $ec2->set_region(AmazonEC2::REGION_US_W1); // US-West 1 $response = $ec2->describe_instances();
将此代码与您所选区域的适当常量(例如AmazonEC2::REGION_EU_W1
)一起使用,可以产生所需的结果。