Learning OpenStack Networking
上QQ阅读APP看书,第一时间看更新

Configuring the database

Using the mysql client, create the Keystone database and associated user:

    # mysql

Enter the following SQL statements at the MariaDB [(none)] > prompt:

CREATE DATABASE keystone;
GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' IDENTIFIED BY 'keystone';
GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' IDENTIFIED BY 'keystone';
quit;