Changes between Version 5 and Version 6 of Xen_Lab5


Ignore:
Timestamp:
Oct 7, 2009, 2:02:38 PM (15 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Xen_Lab5

    v5 v6  
    107107= 【Step 3:設定 Eucalyptus】 =
    108108 * 設定也分為兩部份 node1 和 node2 的設定 (設定檔的位置接放於 /etc/eucalyptus/eucalyptus.conf)
     109 * Eucalyptus 目前只支援 Xen 的 Bridge 架構,可分為4種網路架構,本範例使用 SYSTEM MODE (若是對其他網路架構有性可[http://trac.nchc.org.tw/grid/wiki/Eucalyptus/Install/Net 參考此篇])
    109110 * '''__node1'''__
     111   * Eucalyptus 環境配置 (包含了 cluster 名稱、包含哪些 nodes)
    110112{{{
     113$ sudo euca_conf -addcluster <clustername> <clusterhost>
     114$ sudo euca_conf -nodes "node2"
     115$ euca_conf -synckeys
     116
     117}}}
     118   * 網路配置
     119{{{
     120$ sudo vim /etc/eucalyptus/eucalyptus.conf
     121}}}
     122{{{
     123#!sh
     12459  NODES="node2"
     125181 VNET_MODE="SYSTEM"
    111126}}}
    112127 * '''__node2'''__
    113128{{{
     129$ sudo vim /etc/eucalyptus/eucalyptus.conf
    114130}}}
     131{{{
     132#!sh
     133132 VNET_INTERFACE="peth0"
     134181 VNET_MODE="SYSTEM"
     135}}}