我正在使用 chef 在 VPC 中创建亚马逊 EC2 实例。--associate-eip
我已经使用knife ec2 server create中的选项为新实例分配了一个弹性IP 。在没有网关机器的情况下如何引导它?它卡在“等待 sshd”,因为它使用新创建的服务器的私有 IP 来 ssh 到它,尽管它分配了一个弹性 IP?我错过了什么吗?这是我使用的命令。
bundle exec knife ec2 server create --subnet <subnet> --security-group-ids
<security_group> --associate-eip <EIP> --no-host-key-verify --ssh-key <keypair>
--ssh-user ubuntu --run-list "<role_list>"
--image ami-59590830 --flavor m1.large --availability-zone us-east-1b
--environment staging --ebs-size 10 --ebs-no-delete-on-term --template-file
<bootstrap_file> --verbose
有没有其他解决方法/补丁来解决这个问题?
提前致谢