August 2018
Beginner
462 pages
12h 36m
English
Using the mysql client, create the Glance database and associated user:
# mysql
Enter the following SQL statements at the MariaDB [(none)] > prompt:
CREATE DATABASE glance;GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' IDENTIFIED BY 'glance';GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' IDENTIFIED BY 'glance';quit;
Read now
Unlock full access