[[EucalyptusInstallationUbuntuJaunty_v1.6]]

Installing Eucalyptus (1.6.1) on Ubuntu Jaunty (9.04)

*Installing Eucalyptus (1.6.1) on Ubuntu Jaunty (9.04) [#v9bf07b9]
*Ubuntu Jaunty (9.04)にEucalyptus(1.6.1)をインストールする [#hce22645]
Eucalyptus 1.6.1 (no longer the most current stable release) can be installed on Ubuntu Jaunty using binary DEB packages. (Ubuntu Lucid users can install the latest release from the standard Ubuntu supported repository, or users of any Ubuntu release from Jaunty and later can always install Eucalyptus from source.)

Download DEBs
Eucalyptus binary installation is broken up into several packages: one for each of the components (CLC, Walrus, CC, etc.), as well as a couple of common packages. To install them, along with a significant number of dependencies, add our repository to the list of repositories for your system to use. To do so, add somewhere in /etc/apt/sources.list file the following line:
Eucalyptus 1.6.1(既に最新の安定版ではありません) を Ubuntu Jaunty にインストールするには、バイナリの DEB パッケージを用います。(Ubuntu LucidユーザはUbuntuがサポートする標準のリポジトリから最新版をインストールすることができます。またJanuty以降のUbuntuリリースにはソースコードでEucalyptusをインストールすることが可能です)

deb http://www.eucalyptussoftware.com/downloads/repo/eucalyptus/1.6.1/ubuntu jaunty universe
And run:
**Download DEBs [#w80bfe5f]
**DEBパッケージをダウンロードする [#t6c6cd41]
Eucalyptus binary installation is broken up into several packages: one for each of the components (CLC, Walrus, CC, etc.), as well as a couple of common packages. To install them, along with a significant number of dependencies, add our repository to the list of repositories for your system to use. To do so, add somewhere in /etc/apt/sources.list file the following line:~
Eucalyptusバイナリインストールは共通のパッケージの他に、いくつかの個別パッケージ(CLC,Walrus,CCなど)のインストールに分けられます。インストールのためには、Eucalyptusコンポーネントおよび依存するパッケージを正しく解決するために、Eucalyptusチームが提供するリポジトリを使用してください。リポジトリの追加には、/etc/apt/sources.listに以下の内容を追加します。
 deb http://www.eucalyptussoftware.com/downloads/repo/eucalyptus/1.6.1/ubuntu jaunty universe
And run:~
上記内容を追加した後に、以下のコマンドを実行します
 apt-get update
After installation you may remove the entry from sources.list if you don't want to update Eucalyptus packages automatically.~
Eucalyptusの自動アップデートを行わない場合は、/etc/apt/sources.listに加えた変更はインストール後に削除します

apt-get update
After installation you may remove the entry from sources.list if you don't want to update Eucalyptus packages automatically.

Prerequisites
If you start with a standard Ubuntu Jaunty installation, you will satisfy all prerequisites with the following steps:

Front-end, node and client machine system clocks are syncronized (i.e., using NTP).
ntpdate-debian -s
apt-get install openntpd
Firewall rules must permit the Eucalyptus components to communicate with one another, and clients to communicate with Eucalyptus.
NOTE: on the front-end, ports 8443, 8773, 8774 and 9001 must be open. On the node, port 8775 must be open
If running in SYSTEM networking mode, which is the default, your node machine(s) must be configured with a bridge as the primary interface. You must first uninstall or disable Network Manager (default with Ubuntu Desktop), then follow the procedure below (example):
sudo apt-get install bridge-utils
sudo vi /etc/network/interfaces
Comment out any entry for your existing interfaces (eth0, eth1, etc) and add a bridge entry with your interfaces attached. For example, to have your bridge come up with all physical Ethernet devices added to it, and have DHCP assign an address to the bridge:

auto br0
iface br0 inet dhcp
**Prerequisites [#z61d9413]
**前提条件 [#jfdad6ee]
If you start with a standard Ubuntu Jaunty installation, you will satisfy all prerequisites with the following steps:~
Ubuntu Jaunty の標準的なインストールを行った後は、Eucalyptus の動作条件を満たすために、次の作業を行います。
-Front-end, node and client machine system clocks are syncronized (i.e., using NTP).
-フロントエンド、ノード、およびクライアントの各マシンの間で時刻を同期します(例えばNTPを使用します)
 ntpdate-debian -s
 apt-get install openntpd
-Firewall rules must permit the Eucalyptus components to communicate with one another, and clients to communicate with Eucalyptus.
-FirewallはEucalyptusの各コンポーネントがお互いに通信できるよう設定する必要があります。またクライアントがEucalyptus(訳注:フロントエンド)と通信できるように設定する必要があります。
--NOTE: on the front-end, ports 8443, 8773, 8774 and 9001 must be open. On the node, port 8775 must be open
--注意:フロントエンドではポート8443, 8773, 8774, 9001番を開ける必要があります。ノードではポート8775番を開ける必要があります。
-If running in SYSTEM networking mode, which is the default, your node machine(s) must be configured with a bridge as the primary interface. You must first uninstall or disable Network Manager (default with Ubuntu Desktop), then follow the procedure below (example):
-SYSTEMネットワークモードで動作させる(この動作がデフォルトです)場合には、各ノードのプライマリインターフェイスをブリッジモードで動作させる必要があります。まずNetworkManager(Ubuntu Desktopではデフォルトでインストールされます)をアンインストールするか無効にし、その後以下のような操作を行います(一例です)
 sudo apt-get install bridge-utils
 sudo vi /etc/network/interfaces
Comment out any entry for your existing interfaces (eth0, eth1, etc) and add a bridge entry with your interfaces attached. For example, to have your bridge come up with all physical Ethernet devices added to it, and have DHCP assign an address to the bridge:~
マシン上にある全ての物理インターフェイス(例えばeth0, eth1など)設定をコメントアウトし、ブリッジの設定を追加します。例えば、マシン上にブリッジインターフェイスを起動し、全ての物理インターフェイスをそのブリッジインターフェイスにアタッチし、ブリッジインターフェイスにDHCPでIPアドレスを割り当てる設定は以下のようになります。
 auto br0
 iface br0 inet dhcp
      bridge_ports all
For a static configuration with just eth0 attached (substitute your actual network parameters):

auto br0
iface br0 inet static
For a static configuration with just eth0 attached (substitute your actual network parameters):~
1つのブリッジインターフェイスに物理インターフェイス eth0 しかアタッチしない場合は以下のように設定します
 auto br0
 iface br0 inet static
      address 192.168.12.20
      netmask 255.255.255.0
      network 192.168.12.0
      broadcast 192.168.12.255
      gateway 192.168.12.1
      dns-nameservers 192.168.12.1
      dns-search foobar foobar.com
      bridge_ports eth0
Finally, restart the network by either by restarting the network with '/etc/init.d/network restart' or by rebooting the machine.
Finally, restart the network by either by restarting the network with '/etc/init.d/network restart' or by rebooting the machine.~
最後に、'/etc/init.d/network restart'コマンドでネットワークを再起動するか、マシンを再起動します

Install DEBs on the front end
On front end, where cloud controller and cluster controller will run, install the -cloud and -cc DEBs:
**Install DEBs on the front end [#h1286441]
**フロントエンドへのDEBパッケージのインストール [#k8075b4c]
On front end, where cloud controller and cluster controller will run, install the -cloud and -cc DEBs:~
フロントエンド、つまりクラウド・コントローラ(CLC)とクラスタ・コントローラ(CC)が動作するマシンには以下のようにインストールします。
 aptitude install eucalyptus-cc eucalyptus-cloud eucalyptus-common eucalyptus-walrus eucalyptus-sc
**Install DEBs on the nodes [#fc05f428]
**ノードへのDEBパッケージのインストール [#q6b776d6]
On the compute nodes, install the node controller DEB:~
各ノードへは、以下のようにノード・コントローラのDEBパッケージをインストールします。
 aptitude install eucalyptus-nc eucalyptus-common
(You may safely ignore the error adduser: The group 'libvirt' does not exist.)~
("グループ'libvirtd'が存在しない" というエラーは無視して構いません)

aptitude install eucalyptus-cc eucalyptus-cloud eucalyptus-common eucalyptus-walrus eucalyptus-sc
Install DEBs on the nodes
On the compute nodes, install the node controller DEB:
戻る:[[Debian "squeeze"にEucalyptus(1.6)をインストールする>EucalyptusInstallationDebianSqueeze_v1.6]]

aptitude install eucalyptus-nc eucalyptus-common
(You may safely ignore the error adduser: The group 'libvirt' does not exist.)
進む:[[Eucalyptus1.6.1から1.6.2へのアップグレード>Eucalyptus-Upgrade-1.6.2]]

« Installing Eucalyptus (1.6) on Debian "squeeze"UPUpgrading to Eucalyptus 1.6.2 from 1.6.1 »

Printer-friendly version Login or register to post commen



トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS