To simplify the build tool chain, factor out Install Guide for Debian with debconf. Continueously, keep Install Guide for Debian without debconf in the doc/install-guide directory. Also, use the contents at doc/install-guide as possible for consistency. On the following patches, clean up doc/install-guide sources to cleanup the contents and build tool chains. Change-Id: I8df6b3b382137d08d60f85bc41bcd98ac1f4eb47
1.6 KiB
Install and configure controller node
This section describes how to install and configure the Block Storage service, code-named cinder, on the controller node. This service requires at least one additional storage node that provides volumes to instances.
Install and configure components
Install the packages:
# apt-get install cinder-api cinder-scheduler
Respond to prompts for
database management <debconf/debconf-dbconfig-common>
,Identity service credentials <debconf/debconf-keystone-authtoken>
,service endpoint registration <debconf/debconf-api-endpoints>
, andmessage broker credentials <debconf/debconf-rabbitmq>
.Edit the
/etc/cinder/cinder.conf
file and complete the following actions:In the
[DEFAULT]
section, configure themy_ip
option to use the management interface IP address of the controller node:[DEFAULT] ... my_ip = 10.0.0.11
Configure Compute to use Block Storage
Edit the
/etc/nova/nova.conf
file and add the following to it:[cinder] os_region_name = RegionOne
Finalize installation
Restart the Compute API service:
# service nova-api restart
Restart the Block Storage services:
# service cinder-scheduler restart # service cinder-api restart