Eucalyptus - コンポーネント登録2013/02/24 |
各コンポーネントを登録します。
ここでは例として以下のような環境で構築しています。
#1) frontend.srv.world [10.0.0.30] ⇒ 管理サーバー ( CLC, Walrus, SC, CC インストール )
#2) node01.srv.world [10.0.0.40] ⇒ ノードコントローラ ( NC インストール, KVMホスト構築済み ) |
|
[1] | 管理サーバー上で作業をします。 |
# Cluster Controller 登録 ( "cluster01"の部分は任意の名前, IPアドレスの部分は管理サーバーのIPを指定 ) [root@frontend ~]# euca_conf --register-cluster cluster01 10.0.0.30 SERVICE cluster cluster01 cluster-10.0.0.30 NOTREADY 17 http://10.0.0.30:8774/axis2/services/EucalyptusCC arn:euca:eucalyptus:cluster01:cluster:cluster-10.0.0.30/ The authenticity of host '10.0.0.30 (10.0.0.30)' 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.30' (RSA) to the list of known hosts. root@10.0.0.30's password: # 管理サーバーのrootパスワード
# Walrus 登録 ( IPアドレスの部分は管理サーバーのIPを指定 ) [root@frontend ~]# euca_conf --register-walrus 10.0.0.30 Created new partition 'walrus' SERVICE walrus walrus walrus-10.0.0.30 DISABLED 18 http://10.0.0.30:8773/services/Walrus arn:euca:bootstrap:walrus:walrus:walrus-10.0.0.30/ root@10.0.0.30's password: # 管理サーバーのrootパスワード
# Storage Controller 登録 ( IPアドレスの部分は管理サーバーのIPを指定 ) [root@frontend ~]# euca_conf --register-sc cluster01 10.0.0.30 SERVICE storage cluster01 sc-10.0.0.30 BROKEN 21 http://10.0.0.30:8773/services/Storage arn:euca:eucalyptus:cluster01:storage:sc-10.0.0.30/ Registered the first storage controller in partition 'cluster01'. You must choose a storage back end with ``euca-modify-property -p cluster01.storage.blockstoragemanager=$BACKEND'' root@10.0.0.30's password: # 管理サーバーのrootパスワード
# Node Controller 登録 ( IPアドレスの部分はノードコントローラのIPを指定。ノードを複数登録する場合はスペース区切で指定 ) [root@frontend ~]# euca_conf --register-nodes "10.0.0.40" INFO: We expect all nodes to have eucalyptus installed in $EUCALYPTUS for key synchronization. The authenticity of host '10.0.0.40 (10.0.0.40)' 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.40' (RSA) to the list of known hosts. root@10.0.0.40's password: # ノードコントローラのrootパスワード ...done # 管理者の証明書を取得 [root@frontend ~]# euca_conf --get-credentials admin.zip [root@frontend ~]# unzip admin.zip [root@frontend ~]# source eucarc
# 動作確認 [root@frontend ~]# euca-describe-availability-zones verbose AVAILABILITYZONE cluster01 10.0.0.30 arn:euca:eucalyptus:cluster01:cluster:cluster-10.0.0.30/ AVAILABILITYZONE |- vm types free / max cpu ram disk AVAILABILITYZONE |- m1.small 0008 / 0008 1 512 5 AVAILABILITYZONE |- c1.medium 0004 / 0004 2 512 10 AVAILABILITYZONE |- m1.large 0004 / 0004 2 1024 15 AVAILABILITYZONE |- m1.xlarge 0004 / 0004 2 2048 20 AVAILABILITYZONE |- c1.xlarge 0002 / 0002 4 4096 20 |
Sponsored Link |