Creating the Placement Database
Placement provides an HTTP API for tracking the resource provider inventories and usage. Perform the following operations on the controller node.
- Access the MySQL database.
1mysql -u root -p
- Create a Placement database.
1CREATE DATABASE placement;
- Grant proper access to the database, and set PASSWORD to the access password of the database user placement.
1GRANT ALL PRIVILEGES ON placement.* TO 'placement'@'%' IDENTIFIED BY 'PASSWORD';
- Exit the database access client.
exit
Parent topic: Installing, Configuring, and Verifying Placement