Changed OS version CentOS to CentOS Stream. Changed yum command to dnf command. Change-Id: Ic8747bc9093bb6fd2f05a26ca349a7cb3a920b8c
3.3 KiB
Install and configure Placement for Red Hat Enterprise Linux and CentOS Stream
This section describes how to install and configure the placement service when using Red Hat Enterprise Linux or CentOS Stream packages.
Prerequisites
Before you install and configure the placement service, you must create a database, service credentials, and API endpoints.
Create Database
- To create the database, complete these steps:
Use the database access client to connect to the database server as the
rootuser:$ mysql -u root -pCreate the
placementdatabase:MariaDB [(none)]> CREATE DATABASE placement;Grant proper access to the database:
MariaDB [(none)]> GRANT ALL PRIVILEGES ON placement.* TO 'placement'@'localhost' \ IDENTIFIED BY 'PLACEMENT_DBPASS'; MariaDB [(none)]> GRANT ALL PRIVILEGES ON placement.* TO 'placement'@'%' \ IDENTIFIED BY 'PLACEMENT_DBPASS';Replace
PLACEMENT_DBPASSwith a suitable password.Exit the database access client.
Configure User and Endpoints
Install and configure components
Install the packages:
# dnf install openstack-placement-apiEdit the
/etc/placement/placement.conffile and complete the following actions:In the
[placement_database]section, configure database access:[placement_database] # ... connection = mysql+pymysql://placement:PLACEMENT_DBPASS@controller/placementReplace
PLACEMENT_DBPASSwith the password you chose for the placement database.In the
[api]and[keystone_authtoken]sections, configure Identity service access:[api] # ... auth_strategy = keystone [keystone_authtoken] # ... auth_url = http://controller:5000/v3 memcached_servers = controller:11211 auth_type = password project_domain_name = Default user_domain_name = Default project_name = service username = placement password = PLACEMENT_PASSReplace
PLACEMENT_PASSwith the password you chose for theplacementuser in the Identity service.Note
Comment out or remove any other options in the
[keystone_authtoken]section.Note
The value of
user_name,password,project_domain_nameanduser_domain_nameneed to be in sync with your keystone config.
Populate the
placementdatabase:# su -s /bin/sh -c "placement-manage db sync" placementNote
Ignore any deprecation messages in this output.
Finalize installation
Restart the httpd service:
# systemctl restart httpd