OpenStack Havana - Computeノードを追加する2013/11/25 |
Computeノードを追加してみます。いわゆる計算ノードです。
Computeノードを追加することにより、より多くのインスタンスを扱うことができます。
以下の例では、計算ノード用に新規に物理的に別マシンを準備して設定してみます。
|
|
[1] |
まずは、Computeノードに必要な KVMハイパーバイザを、こちらを参考にインストールしておいてください。
リンク先 [2] のブリッジの設定は必要ありません。
|
[2] | Nova-Compute, Nova-Network インストール |
# 事前にOpenStack Havana 用リポジトリを登録しておく root@node01:~# aptitude -y install nova-network nova-compute-kvm python-novaclient
|
[3] | Nova 設定 |
root@node01:~#
vi /etc/nova/nova.conf # 最終行に追記 # IPv6が不要な場合は記述 use_ipv6=false auth_strategy=keystone rootwrap_config=/etc/nova/rootwrap.conf # MySQL サーバーに登録したもの sql_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 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 # パブリック用のインターフェース名 public_interface=eth0 # 適当なブリッジインターフェイス名 flat_network_bridge=br100 # フラットDHCPブリッジに使用するインターフェース名 flat_interface=eth0
root@node01:~#
vi /etc/nova/api-paste.ini # 115行目:以下のように変更 (Keystone に登録した値) [filter:authtoken] paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory auth_host = 10.0.0.30 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = nova admin_password = servicepassword
for service in compute network; do service nova-$service restart done nova-compute stop/waiting nova-compute start/running, process 5715 nova-network stop/waiting nova-network start/running, process 5725 |
[4] | サービスが正しく起動しているか確認してください。以下のように計算ノード分が追加されていればOKです。 あとは、制御ノードのスケジューラが設定に従って、適切な計算ノード上でインスタンスを起動してくれます。 |
root@node01:~# nova-manage service list Binary Host Zone Status State Updated_At nova-conductor dlp internal enabled :-) 2013-11-26 04:19:52 nova-scheduler dlp internal enabled :-) 2013-11-26 04:19:58 nova-network dlp internal enabled :-) 2013-11-26 04:19:57 nova-cert dlp internal enabled :-) 2013-11-26 04:19:57 nova-compute dlp nova enabled :-) 2013-11-26 04:19:51 nova-consoleauth dlp internal enabled :-) 2013-11-26 04:19:56 nova-compute node01 nova enabled :-) 2013-11-26 04:19:54 nova-network node01 internal enabled :-) 2013-11-26 04:19:54 |
Sponsored Link |