Rename OpenStack Supporting service files

It was renamed those files which correspond to supporting services. Moreover, it
was included the instruction to verify fix for installing the binaries of the
bundles.

Signed-off-by: Victor Morales <victor.morales@intel.com>
This commit is contained in:
Victor Morales
2015-11-10 12:18:26 -06:00
parent 2835826e08
commit 77aa446bc7
4 changed files with 15 additions and 13 deletions
+2 -2
View File
@@ -42,8 +42,8 @@ OpenStack* implementation
openstack_bundle_and_service_summary
openstack_sys_req_and_pw_summary
openstack_installing_bundles
openstack_environment-database
openstack_environment-messaging
openstack_supporting-database
openstack_supporting-messaging
openstack_identity
openstack_identity-openrc
openstack_image
+3 -3
View File
@@ -8,8 +8,8 @@ for your environment.
To install, continue with the following topics:
* `Database <openstack_environment-database.html>`_
* `Message queue <openstack_environment-messaging.html>`_
* `Database <openstack_supporting-database.html>`_
* `Message queue <openstack_supporting-messaging.html>`_
* `OpenStack Identity <openstack_identity.html>`_
* `Create OpenStack client environment scripts <openstack_identity-openrc.html>`_
* `OpenStack Image <openstack_image.html>`_
@@ -19,4 +19,4 @@ To install, continue with the following topics:
* `OpenStack Networking <openstack_networking.html>`_
* `OpenStack Orchestration <openstack_orchestration.html>`_
* `OpenStack Telemetry <openstack_telemetry.html>`_
* `OpenStack Object Storage <openstack_object_storage.html>`_
* `OpenStack Object Storage <openstack_object_storage.html>`_
@@ -11,8 +11,10 @@ Install and configure the database server
#. Install MariaDB bundle::
# clr_bundle_add database-mariadb
# swupd_verify --fix
#. Create the ``/etc/mariadb/`` folder and the ``/etc/mariadb/openstack.cnf`` file::
#. Create the ``/etc/mariadb/`` folder and the ``/etc/mariadb/openstack.cnf``
file::
# mkdir /etc/mariadb
# touch /etc/mariadb/openstack.cnf
@@ -9,9 +9,10 @@ services. This guide implements the RabbitMQ message queue service.
Install the message queue service
---------------------------------
#. Install the message queue bundle::
#. Install the message queue bundle.::
# clr_bundle_add message-broker-rabbitmq
# clr_bundle_add message-broker-rabbitmq
# swupd_verify --fix
Configuring the message broker service
--------------------------------------
@@ -19,25 +20,24 @@ Configuring the message broker service
Complete the following steps to configure the message broker service:
#. Message broker service needs to be able to resolve to itself. Add the
following line to ``/etc/hosts``::
following line to ``/etc/hosts``.::
127.0.0.1 controller
#. Start the message broker service and configure it to start when the
system boots::
system boots.::
# systemctl enable rabbitmq-server.service
# systemctl start rabbitmq-server.service
#. Add the OpenStack user::
#. Add the OpenStack user. Replace ``RABBIT_PASS`` with a suitable password.::
# rabbitmqctl add_user openstack RABBIT_PASS
Creating user openstack ...
...done.
Replace ``RABBIT_PASS`` with a suitable password.
#. Permit configuration, write, and read access for the OpenStack user::
#. Permit configuration, write, and read access for the OpenStack user.::
# rabbitmqctl set_permissions openstack ".*" ".*" ".*"
Setting permissions for user "openstack" in vhost "/" ...