OpenStack Rocky : Nova 設定#12018/09/12 |
OpenStack Compute Service(Nova)を設定します。
当例では以下のような環境で管理ノードを構成しています。
eth0|10.0.0.30 +-----------+-----------+ | [ Control Node ] | | | | MariaDB RabbitMQ | | Memcached httpd | | Keystone Glance | +-----------------------+ |
[1] | Keystone に Nova 用のユーザー等々を登録しておきます。 |
# nova ユーザー作成 (service プロジェクト所属) root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword nova +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | aaeee626080841a491235fb06e77f10c | | domain_id | default | | enabled | True | | id | 6709d0369ead4c808810215a41f0e530 | | name | nova | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # nova ユーザーを admin ロール に加える root@dlp ~(keystone)# openstack role add --project service --user nova admin
# placement ユーザー作成 (service プロジェクト所属) root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword placement +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | aaeee626080841a491235fb06e77f10c | | domain_id | default | | enabled | True | | id | 1f6db679a17444d8a47d71ec73c4faa3 | | name | placement | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # placement ユーザーを admin ロール に加える root@dlp ~(keystone)# openstack role add --project service --user placement admin
# nova 用サービスエントリ作成 root@dlp ~(keystone)# openstack service create --name nova --description "OpenStack Compute service" compute +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | OpenStack Compute service | | enabled | True | | id | 97286644826441c9ae2e42795730e2da | | name | nova | | type | compute | +-------------+----------------------------------+ # placement 用サービスエントリ作成 root@dlp ~(keystone)# openstack service create --name placement --description "OpenStack Compute Placement service" placement +-------------+-------------------------------------+ | Field | Value | +-------------+-------------------------------------+ | description | OpenStack Compute Placement service | | enabled | True | | id | f00e23ac9f334ec29ef8d8c1fff5751c | | name | placement | | type | placement | +-------------+-------------------------------------+ # 管理ノードを定義 root@dlp ~(keystone)# export controller=10.0.0.30
# nova 用エンドポイント作成 (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne compute public http://$controller:8774/v2.1/%\(tenant_id\)s +--------------+------------------------------------------+ | Field | Value | +--------------+------------------------------------------+ | enabled | True | | id | 412d511ed4fc41169322d769ce90bd40 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 97286644826441c9ae2e42795730e2da | | service_name | nova | | service_type | compute | | url | http://10.0.0.30:8774/v2.1/%(tenant_id)s | +--------------+------------------------------------------+ # nova 用エンドポイント作成 (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne compute internal http://$controller:8774/v2.1/%\(tenant_id\)s +--------------+------------------------------------------+ | Field | Value | +--------------+------------------------------------------+ | enabled | True | | id | 5705d5ba89c5484598739a0096e7b923 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 97286644826441c9ae2e42795730e2da | | service_name | nova | | service_type | compute | | url | http://10.0.0.30:8774/v2.1/%(tenant_id)s | +--------------+------------------------------------------+ # nova 用エンドポイント作成 (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne compute admin http://$controller:8774/v2.1/%\(tenant_id\)s +--------------+------------------------------------------+ | Field | Value | +--------------+------------------------------------------+ | enabled | True | | id | 9cda4e6ab87d448fa3e7b0e0a483d184 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 97286644826441c9ae2e42795730e2da | | service_name | nova | | service_type | compute | | url | http://10.0.0.30:8774/v2.1/%(tenant_id)s | +--------------+------------------------------------------+ # placement 用エンドポイント作成 (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne placement public http://$controller:8778 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 2491d065cf6e4dde9a6aadfff26641c7 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | f00e23ac9f334ec29ef8d8c1fff5751c | | service_name | placement | | service_type | placement | | url | http://10.0.0.30:8778 | +--------------+----------------------------------+ # placement 用エンドポイント作成 (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne placement internal http://$controller:8778 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 0e62427c316e4081a50d97dce8817b49 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | f00e23ac9f334ec29ef8d8c1fff5751c | | service_name | placement | | service_type | placement | | url | http://10.0.0.30:8778 | +--------------+----------------------------------+ # placement 用エンドポイント作成 (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne placement admin http://$controller:8778 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 667fabe482a54da490bfba45d6bbd9a5 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | f00e23ac9f334ec29ef8d8c1fff5751c | | service_name | placement | | service_type | placement | | url | http://10.0.0.30:8778 | +--------------+----------------------------------+ |
[2] | Nova 用のユーザーとデータベースを MariaDB に登録しておきます。 |
root@dlp ~(keystone)# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 48 Server version: 10.1.34-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
create database nova; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova.* to nova@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova.* to nova@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
create database nova_api; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova_api.* to nova@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova_api.* to nova@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
create database nova_placement; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova_placement.* to nova@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova_placement.* to nova@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
create database nova_cell0; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova_cell0.* to nova@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on nova_cell0.* to nova@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye |
Sponsored Link |