Changes between Version 4 and Version 5 of Eucalyptus/User


Ignore:
Timestamp:
Aug 20, 2009, 10:47:56 AM (15 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Eucalyptus/User

    v4 v5  
    1818= 【2.[http://open.eucalyptus.com/wiki/Euca2oolsGuide 安裝 Euca2ools]】 =
    1919----
    20 = 【3.快速開始】 =
     20= 【3.快速開始(產生VM)】 =
    2121 * 查詢 Euca 系統
    2222{{{
     
    5555}}}
    5656----
     57= 【4.使用Eucalyptus的 EBS(Elastic Block Storge) 功能】 =
     58{{{
     59### 查詢 zone ###
     60$ euca-describe-availability-zones
     61
     62### 產生 volume ###
     63$ euca-create-volume --size 1 --zone myzone
     64// 產生 1G 的volume 於 myzone
     65
     66### 查詢 volume ###
     67$ euca-describe-volumes
     68
     69### attache volume 到一個 instance ###
     70$ euca-attach-volume -i i-3E20088C -d /dev/sdb1 vol-32AA04A3
     71// 將 volume(vol-32AA04A3 ) 作為 instance(i-3E20088C) 的 /dev/sdb1 設備
     72
     73### detach volume ###
     74$ euca-detach-volume vol-32AA04A3
     75
     76### 刪除 volume ###
     77$ euca-delete-volume vol-32AA04A3
     78
     79### 使用快照 ###
     80$ euca-create-snapshot vol-32AA04A3
     81$ euca-create-volume --snapshot snap-32A604AA --zone myzone
     82VOLUME  vol-32C304AD    snap-32A604AA   creating        2009-08-20T02:40:28.962Z
     83$ euca-describe-snapshots
     84$ euca-delete-snapshot snap-32A604AA
     85}}}
     86
     87----
    5788= Regerence =
    5889 * [http://docs.amazonwebservices.com/AWSEC2/2008-12-01/GettingStartedGuide/ Amazon EC2 Getting Started Guide]