Create database and grant privileges (from MySQL prompt) CREATE DATABASE glance; GRANT ALL PRIVILEGES ON glance.* TO ‘glance’@’localhost’ IDENTIFIED BY ‘commonpass’; GRANT ALL PRIVILEGES ON glance.* TO ‘glance’@’%’ IDENTIFIED BY ‘commonpass’; FLUSH PRIVILEGES; exit Create glance user . admin-openrc openstack user create –domain default –password-prompt glance Add the admin role to the glance user and service project openstack role add –project…