Ubuntu 14.04
Sponsored Link

OpenStack Icehouse : Nova 設定2015/05/13

 
OpenStack Compute Service(Nova)をインストールします。
[1] Nova インストール
Compute ノードを分離する場合は「nova-compute-kvm」は不要です。 その場合の Compute ノード単体の設定はこちらを参照ください
root@dlp:~#
apt-get -y install nova-api nova-cert nova-conductor nova-consoleauth nova-objectstore nova-scheduler nova-compute-kvm python-novaclient
[2] Nova 用のユーザーとデータベースを MySQL に登録
root@dlp:~#
mysql -u root -p

Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 37
Server version: 5.5.34-0ubuntu0.12.04.1 (Ubuntu)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

# 「nova」データベース作成 ( 'password'の箇所は設定するパスワードを入力 )

mysql>
create database nova character set utf8;

Query OK, 1 row affected (0.00 sec)
mysql>
grant all privileges on nova.* to nova@'localhost' identified by 'password';

Query OK, 0 rows affected (0.00 sec)
mysql>
grant all privileges on nova.* to nova@'%' identified by 'password';

Query OK, 0 rows affected (0.00 sec)
mysql>
flush privileges;

Query OK, 0 rows affected (0.00 sec)
mysql>
exit

Bye
[3] Nova の基本設定
root@dlp:~#
vi /etc/nova/nova.conf
# 最終行に追記

# IPv6が不要な場合は記述

use_ipv6=false
auth_strategy=keystone
rootwrap_config=/etc/nova/rootwrap.conf
# MySQL に登録したもの

connection=mysql://nova:password@10.0.0.30/nova
osapi_compute_listen="0.0.0.0"
osapi_compute_listen_port=8774
scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
# Glance サーバーのホスト名またはIP

glance_host=10.0.0.30
glance_port=9292
glance_protocol=http
rpc_backend=nova.openstack.common.rpc.impl_kombu
notification_driver=nova.openstack.common.notifier.rpc_notifier
# Memcached サーバーのホスト名またはIP

memcached_servers=10.0.0.30:11211
# RabbitMQ サーバーのホスト名またはIP

rabbit_host=10.0.0.30
# RabbitMQ サーバー認証ID

rabbit_userid=guest
# RabbitMQ サーバー認証IDのパスワード

rabbit_password=password
[keystone_authtoken]
# Keystone サーバーのホスト名またはIP

auth_host=10.0.0.30
auth_port=35357
auth_protocol=http
admin_tenant_name=service
admin_user=nova
# Keystone に登録した Nova ユーザーのパスワード

admin_password=servicepassword
[4] ネットワークの設定
以下はレガシーネットワーク ( nova-network ) を利用する場合の設定です。
Neutron Service を利用する場合は、こちらを参照して設定してください
ちなみに、レガシーネットワーク ( nova-network ) は OpenStack Icehouse では非推奨となっています。
root@dlp:~#
echo 'net.ipv4.ip_forward=1' >> /etc/sysctl.conf

root@dlp:~#
sysctl -p

net.ipv4.ip_forward = 1
root@dlp:~#
apt-get -y install nova-network
root@dlp:~#
vi /etc/nova/nova.conf
# [DEFAULT] セクション内の適当な場所へ追記

network_driver=nova.network.linux_net
libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtGenericVIFDriver
linuxnet_interface_driver=nova.network.linux_net.LinuxBridgeInterfaceDriver
firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
network_api_class=nova.network.api.API
security_group_api=nova
network_manager=nova.network.manager.FlatDHCPManager
network_size=254
allow_same_net_traffic=False
multi_host=True
send_arp_for_ha=True
share_dhcp_address=True
force_dhcp_release=True
# パブリック用のインターフェース名

public_interface=eth0
# 適当なブリッジインターフェイス名

flat_network_bridge=br100
# フラットDHCPブリッジに使用するインターフェース名

flat_interface=lo
[5] Nova サービス起動
レガシーネットワーク ( nova-network ) を利用しない場合は「network」を除外してください。
Compute ノードを分離する場合は「compute」を除外してください。
root@dlp:~#
nova-manage db sync

root@dlp:~#
for service in api conductor network scheduler objectstore cert consoleauth compute; do
service nova-$service restart
done

nova-api stop/waiting
nova-api start/running, process 4794
nova-conductor stop/waiting
nova-conductor start/running, process 4811
nova-network stop/waiting
nova-network start/running, process 4826
nova-scheduler stop/waiting
nova-scheduler start/running, process 4845
nova-objectstore stop/waiting
nova-objectstore start/running, process 4864
nova-cert stop/waiting
nova-cert start/running, process 4887
nova-consoleauth stop/waiting
nova-consoleauth start/running, process 4914
nova-compute stop/waiting
nova-compute start/running, process 4946
# 動作確認

root@dlp:~#
nova-manage service list

Binary           Host         Zone             Status     State Updated_At
nova-cert        dlp          internal         enabled    :-)   2014-05-13 11:46:57.942848
nova-consoleauth dlp          internal         enabled    :-)   2014-05-13 11:46:58.136894
nova-scheduler   dlp          internal         enabled    :-)   2014-05-13 11:46:57.627822
nova-conductor   dlp          internal         enabled    :-)   2014-05-13 11:46:58.115143
nova-compute     dlp          nova             enabled    :-)   2014-05-13 11:46:58.738616
nova-network     dlp          internal         enabled    :-)   2014-05-13 11:46:58.386463
関連コンテンツ