From Fedora Project Wiki
(remove from cloud SIG category) |
|||
(11 intermediate revisions by 5 users not shown) | |||
Line 3: | Line 3: | ||
|setup=Follow [[QA:Testcase_start_OpenStack_Glance_services]]. | |setup=Follow [[QA:Testcase_start_OpenStack_Glance_services]]. | ||
− | + | |actions= | |
+ | Configure nova to use keystone auth: | ||
+ | $> sudo openstack-config-set /etc/nova/nova.conf DEFAULT auth_strategy keystone | ||
+ | $> sudo openstack-config-set /etc/nova/api-paste.ini filter:authtoken admin_tenant_name service | ||
+ | $> sudo openstack-config-set /etc/nova/api-paste.ini filter:authtoken admin_user nova | ||
+ | $> sudo openstack-config-set /etc/nova/api-paste.ini filter:authtoken admin_password servicepass | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Start the services: | Start the services: | ||
− | $> for svc in api | + | $> for svc in api cert compute network objectstore scheduler volume; do sudo systemctl start openstack-nova-$svc.service; done |
− | $> for svc in api | + | $> for svc in api cert compute network objectstore scheduler volume; do sudo systemctl enable openstack-nova-$svc.service; done |
|results= | |results= | ||
Check that the services are running: | Check that the services are running: | ||
− | $> for svc in api | + | $> for svc in api cert compute network volume scheduler; do sudo systemctl status openstack-nova-$svc.service; done |
And check for errors in the logs: | And check for errors in the logs: | ||
$> grep -i error /var/log/nova/*.log | $> grep -i error /var/log/nova/*.log | ||
Make sure the API server is responding: | Make sure the API server is responding: | ||
− | $> | + | $> nova flavor-list |
}} | }} | ||
[[Category:OpenStack Test Cases]] | [[Category:OpenStack Test Cases]] | ||
− |
Latest revision as of 06:17, 25 April 2012
Description
Test that the various Nova services start without error.
Setup
Follow QA:Testcase_start_OpenStack_Glance_services.
How to test
Configure nova to use keystone auth:
$> sudo openstack-config-set /etc/nova/nova.conf DEFAULT auth_strategy keystone $> sudo openstack-config-set /etc/nova/api-paste.ini filter:authtoken admin_tenant_name service $> sudo openstack-config-set /etc/nova/api-paste.ini filter:authtoken admin_user nova $> sudo openstack-config-set /etc/nova/api-paste.ini filter:authtoken admin_password servicepass
Start the services:
$> for svc in api cert compute network objectstore scheduler volume; do sudo systemctl start openstack-nova-$svc.service; done $> for svc in api cert compute network objectstore scheduler volume; do sudo systemctl enable openstack-nova-$svc.service; done
Expected Results
Check that the services are running:
$> for svc in api cert compute network volume scheduler; do sudo systemctl status openstack-nova-$svc.service; done
And check for errors in the logs:
$> grep -i error /var/log/nova/*.log
Make sure the API server is responding:
$> nova flavor-list