From Fedora Project Wiki
m (Remove "glance index" - due to keystone configuration issues prior) |
No edit summary |
||
Line 11: | Line 11: | ||
And check for errors in the logs: | And check for errors in the logs: | ||
$> grep -i error /var/log/glance/*.log | $> grep -i error /var/log/glance/*.log | ||
}} | }} | ||
[[Category:OpenStack Test Cases]] | [[Category:OpenStack Test Cases]] | ||
[[Category:Cloud SIG]] | [[Category:Cloud SIG]] |
Revision as of 10:09, 7 March 2012
Description
Test that the Glance API and registry services start without error.
Setup
Follow QA:Testcase_setup_OpenStack_Nova.
How to test
Start and enable the Glance API and registry services:
$> for svc in api registry; do sudo systemctl start openstack-glance-$svc.service; done $> for svc in api registry; do sudo systemctl enable openstack-glance-$svc.service; done
Expected Results
Check that the services are running:
$> for svc in api registry; do sudo service openstack-glance-$svc status; done
And check for errors in the logs:
$> grep -i error /var/log/glance/*.log