You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'localhost' identified by 'password123';
GRANT ALL PRIVILEGES ON nova_api.* TO 'nova'@'%' identified by 'password123';
GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'localhost' identified by 'password123';
GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'%' identified by 'password123';
GRANT ALL PRIVILEGES ON nova_cell0.* TO 'nova'@'localhost' identified by 'password123';
GRANT ALL PRIVILEGES ON nova_cell0.* TO 'nova'@'%' identified by 'password123';
exit
Create openstack objects
Source .adminrc
source .adminrc
Create service and creds
Create nova user and add role:
openstack user create --domain default --password password123 nova
openstack role add --project service --user nova admin
Create nova service:
openstack service create --name nova \
--description "Openstack Compute" compute
Create service API endpoints:
foriin public internal admin; \
do openstack endpoint create --region RegionOne \
compute $i http://controller:8774/v2.1; \
done