描述 E2C 实例不返回任何内容
我已启动 EC2 实例并安装了 ec2-api-tools。设置环境变量(JAVA_HOME、EC2_PRIVATE_KEY、EC2_CERT)。
运行 ec2-describe-instances
不会返回任何内容。根据 EC2 命令行参考信息,应返回所有当前正在运行(和终止)的实例的信息。出了什么问题?
一般来说,ec2-describe-images -o self -o amazon
可以正常工作,因此 EC2 工具可以正常工作。向 ec2-describe-instances 显式添加 -K 和 -C 参数不会改变这种情况。
I've started an EC2 instance and installed the ec2-api-tools. Environment variables (JAVA_HOME, EC2_PRIVATE_KEY, EC2_CERT) are set up.
Running ec2-describe-instances
doesn't return anything. According to the EC2 command line reference information on all currently running (and terminated) instances should be returned. What's going wrong?
In general ec2-describe-images -o self -o amazon
works, so the EC2 tools are working. Adding explicitly -K and -C parameters to ec2-describe-instances doesn't change the situation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更详细一点:
您不需要直接设置 EC2_URL。您可以使用更友好的命令行选项:
--region eu-west-1
(替换您要寻址的区域的名称)。
这样您就不需要查找该区域的 URL 端点。
以下是 EC2 命令行 API 工具常规对此进行解释的选项。
A little more detail:
You don't need to set the EC2_URL directly. You can use the more friendly command-line option:
--region eu-west-1
(substituting the name of the region you want to address).
This way you don't need to look up the region's URL endpoint.
Here are the EC2 Command Line API Tools general options where this is explained.
如果您的所有实例都位于 eu-west-1 中,请将您的 aws cli 配置为默认使用该区域。
只需输入: aws configure
即可系统会提示输入您的凭据,然后您可以重写区域
if all your instances are in eu-west-1, configure your aws cli to use this region by default.
just type : aws configure
and you ll be prompted to enter your credential, then you can rewrite the region