なんかの Log

良い感じで投げっぱなしにしてみせる。

Ubuntu Enterprise Cloud 10.04の作業メモ

インスタンスの起動スペックの表示

$ sudo euca-describe-availability-zones verbose

登録しているイメージの表示

$ euca-describe-images

インスタンスの状態の表示

$ euca-describe-instances

インスタンスの起動

$ euca-run-instances -k [key_name] --group default [インスタンス名]

UECのウェブインタフェースで、プロキシのためにStoreにつなげない場合

https://$IPADDRESS:8443にアクセスするためにプロキシを設定
/etc/default/image-store-proxy

export http_proxy=http:///
export https_proxy=https:///
export no_proxy=localhost,127,0,0,1,192.168.*.*

的なのを追加。no_proxyにはスペースをいれないように

$ euca-describe-availability-zones verbose
で、free/max が 0000/0000の時はクラスタが登録されていない可能性が高い。
$ euca_conf --no-rsync --discover-nodes
で、CCにいないとダメよ!と怒られる場合は

/etc/network/interfaces

auto br0 
iface br0 inet dhcp 
        bridge_ports all

で、解決。