Configuring the database

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;
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset