CentOS 5
Sponsored Link

インスタンス起動2010/05/03

  作成したイメージをインスタンスとして起動します。

[1] まずは 起動やログインに必要な keypair を作成します。
[root@frontend ~]#
euca-add-keypair my-key > ~/.ssh/id_rsa-my-key

[root@frontend ~]#
chmod 600 ~/.ssh/id_rsa-my-key
[2] 「euca-run-instances」でインスタンスを起動します。以下で指定している「eki-***」等は管理画面で確認することができます。
 
[root@frontend ~]#
euca-run-instances -k my-key --kernel eki-8DDF16EC --ramdisk eri-887216DE emi-1CCC15AD

RESERVATION     r-3A860633     admin     admin-default
INSTANCE     i-43D2081A     emi-1CCC15AD     0.0.0.0    0.0.0.0    pending    my-key
      2009-11-07T09:05:03.867Z    eki-8DDF16EC    eri-887216DE
[3] 起動後、いくらか時間が経つと、以下のようにIPアドレスが割り振られます。
[root@frontend ~]#
euca-describe-instances

RESERVATION     r-47F1075A     admin     default
INSTANCE     i-523909E7     emi-1CCC15AD     10.0.0.176    10.0.0.176    running    my-key
      0    m1.small    2009-11-07T09:12:12.299Z    frontend    eki-8DDF16EC
      eri-887216DE
[4] 起動したインスタンスに[1]で作成した鍵を使ってログインします。
[root@frontend ~]#
ssh -i .ssh/id_rsa-my-key -l root 10.0.0.176

The authenticity of host '10.0.0.176 (10.0.0.176)' can't be established.
RSA key fingerprint is xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx.
Are you sure you want to continue connecting (yes/no)?
yes

Warning: Permanently added '10.0.0.176' (RSA) to the list of known hosts.
-bash-3.2#    
# ログイン完了
関連コンテンツ