From 132624c6a8187a159b5849eb51b1887a7f39a5e0 Mon Sep 17 00:00:00 2001 From: Stephen Gordon Date: Wed, 2 Jul 2014 23:24:24 -0400 Subject: [PATCH] Add steps for restarting Message Bus on Fedora The messagebus service is renamed dbus in Fedora. As such the instructions have been updated to provide both the RHEL/CentOS and Fedora variants. Examples of the service/chkconfig commands were not switched to systemctl in this change as service/chkconfig remains used consistently across the guide at this time and works on both RHEL/CentOS-based and Fedora distributions. Closes-Bug: #1322887 backport: icehouse Change-Id: I9a7dc7fcbb11b7e342aaeebe4d57b95709a92363 --- doc/install-guide/section_nova-compute.xml | 27 ++++++++++++++++------ 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/doc/install-guide/section_nova-compute.xml b/doc/install-guide/section_nova-compute.xml index 27a294cbc6..3558be4376 100644 --- a/doc/install-guide/section_nova-compute.xml +++ b/doc/install-guide/section_nova-compute.xml @@ -196,20 +196,33 @@ virt_type = qemu # rm /var/lib/nova/nova.sqlite - Start the Compute - service and configure it to start when the system - boots: + Start the Compute service and + its dependencies. Configure them to start automatically when the system + boots. Restart the Compute service: # service nova-compute restart - # service libvirtd start + + + For RHEL or CentOS: + # service libvirtd start # service messagebus start +# service openstack-nova-compute start # chkconfig libvirtd on # chkconfig messagebus on -# service openstack-nova-compute start # chkconfig openstack-nova-compute on - # service libvirtd start -# chkconfig libvirtd on + + For Fedora: + # service libvirtd start +# service dbus start # service openstack-nova-compute start +# chkconfig libvirtd on +# chkconfig dbus on +# chkconfig openstack-nova-compute on + + + # service libvirtd start +# service openstack-nova-compute start +# chkconfig libvirtd on # chkconfig openstack-nova-compute on