From Fedora Project Wiki
(Created page with "{{QA/Test_Case |description=A brief description of the functionality being tested. |setup=Optionally include information on preparing the test environment |actions= Be as specifi...") |
No edit summary |
||
Line 1: | Line 1: | ||
{{QA/Test_Case | {{QA/Test_Case | ||
|description= | |description=Test that the Glance API and registry services start without error. | ||
|setup= | |setup=Follow [[QA:Testcase_install_OpenStack_packages]]. | ||
|actions= | |actions= | ||
Start and enable the Glance API and registry services: | |||
$> for svc in api registry; do sudo service openstack-glance-$svc start; done | |||
$> for svc in api registry; do sudo chkconfig openstack-glance-$svc on; done | |||
|results= | |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 | |||
}} | }} | ||
[[Category:OpenStack Test Cases]] | [[Category:OpenStack Test Cases]] | ||
[[Category:Cloud SIG]] | [[Category:Cloud SIG]] |
Revision as of 14:11, 17 October 2011
🔗 Description
Test that the Glance API and registry services start without error.
🔗 Setup
Follow QA:Testcase_install_OpenStack_packages.
🔗 How to test
Start and enable the Glance API and registry services:
$> for svc in api registry; do sudo service openstack-glance-$svc start; done $> for svc in api registry; do sudo chkconfig openstack-glance-$svc on; 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