August 2018
Beginner
462 pages
12h 36m
English
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;
Read now
Unlock full access