OpenStack Pike : Configure Nova#12017/09/03 |
Install and Configure OpenStack Compute Service (Nova).
This example is based on the emvironment like follows.
eth0|10.0.0.30 +-----------+-----------+ | [ Control Node ] | | | | MariaDB RabbitMQ | | Memcached httpd | | Keystone Glance | +-----------------------+ |
[1] | Add users and others for Nova in Keystone. |
# add nova user (set in service project) [root@dlp ~(keystone)]# openstack user create --domain default --project service --password servicepassword nova +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | c9ab6e9feb4d444c8f637fcfe7a67305 | | domain_id | default | | enabled | True | | id | 4cda5314e8a347b0825e7143f98c9213 | | name | nova | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # add nova user in admin role [root@dlp ~(keystone)]# openstack role add --project service --user nova admin
# add placement user (set in service project) [root@dlp ~(keystone)]# openstack user create --domain default --project service --password servicepassword placement +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | c9ab6e9feb4d444c8f637fcfe7a67305 | | domain_id | default | | enabled | True | | id | 9a0f7fe7234749d18dd920bd02ae9aff | | name | placement | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # add placement user in admin role [root@dlp ~(keystone)]# openstack role add --project service --user placement admin
# add service entry for nova [root@dlp ~(keystone)]# openstack service create --name nova --description "OpenStack Compute service" compute +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | OpenStack Compute service | | enabled | True | | id | b29ba1c32f124b5f815537ec1af15108 | | name | nova | | type | compute | +-------------+----------------------------------+ # add service entry for 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 | d9b2c2dfb45d45eb926a7d48f8995c7b | | name | placement | | type | placement | +-------------+-------------------------------------+ # define keystone host [root@dlp ~(keystone)]# export controller=10.0.0.30
# add endpoint for 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 | 388f2a27465e4541b7ee7068412a72d6 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | b29ba1c32f124b5f815537ec1af15108 | | service_name | nova | | service_type | compute | | url | http://10.0.0.30:8774/v2.1/%(tenant_id)s | +--------------+------------------------------------------+ # add endpoint for 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 | 8f1b1ceb8df84113812eda157e9b3622 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | b29ba1c32f124b5f815537ec1af15108 | | service_name | nova | | service_type | compute | | url | http://10.0.0.30:8774/v2.1/%(tenant_id)s | +--------------+------------------------------------------+ # add endpoint for 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 | f1a6a36bf1314586be033596b06bdd18 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | b29ba1c32f124b5f815537ec1af15108 | | service_name | nova | | service_type | compute | | url | http://10.0.0.30:8774/v2.1/%(tenant_id)s | +--------------+------------------------------------------+ # add endpoint for placement (public) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne placement public http://$controller:8778 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 7bbc5b631aa149ce902839ced72cec0c | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | d9b2c2dfb45d45eb926a7d48f8995c7b | | service_name | placement | | service_type | placement | | url | http://10.0.0.30:8778 | +--------------+----------------------------------+ # add endpoint for placement (internal) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne placement internal http://$controller:8778 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | f78911008831478f92d1366e9f80e342 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | d9b2c2dfb45d45eb926a7d48f8995c7b | | service_name | placement | | service_type | placement | | url | http://10.0.0.30:8778 | +--------------+----------------------------------+ # add endpoint for placement (admin) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne placement admin http://$controller:8778 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | c6e6719ba03842c1ab6fbacc66e27980 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | d9b2c2dfb45d45eb926a7d48f8995c7b | | service_name | placement | | service_type | placement | | url | http://10.0.0.30:8778 | +--------------+----------------------------------+ |
[2] | Add a User and Database on MariaDB for Nova. |
[root@dlp ~(keystone)]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 22 Server version: 10.1.20-MariaDB MariaDB Server Copyright (c) 2000, 2016, 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 |