Red Hat Bugzilla – Bug 1141605
[Docs] Line edit requests for the Manual Setup guide
Last modified: 2015-01-18 22:31:09 EST
The following items must be addressed: 1: Section 12.6 - Configure the Telemetry Database Connection ============================== When configuring ceilometer, the following step is required but missing in the document. # mongo --host controller --eval ' db = db.getSiblingDB("ceilometer"); db.addUser({user: "ceilometer", pwd: "CEILOMETER_DBPASS", roles: [ "readWrite", "dbAdmin" ]})' See http://docs.openstack.org/icehouse/install-guide/install/yum/content/ceilometer-install.html 2: Section 12.4 - Create the Telemetry Identity Records ============================== In Step 7., the first two lines include '\' but the following two lines do not. This prevents users from copying and pasting this command. '\' should be added to the latter lines as well. 3: Section 4.6.5 - Build Object Storage Service Ring Files ============================== The following command in 4.6.3 must be run after /etc/swift/account.ring.gz is created in 4.6.5.: # service openstack-swift-proxy start Otherwise, the command fails to start the service. 4: Section 2.4.2.1 - Launch the RabbitMQ Message Broker ============================== The following commands are missing in the procedure: # rabbitmqctl set_permissions cinder ".*" ".*" ".*" # rabbitmqctl set_permissions nova ".*" ".*" ".*" # rabbitmqctl set_permissions neutron ".*" ".*" ".*" # rabbitmqctl set_permissions heat ".*" ".*" ".*" See https://access.redhat.com/articles/1167113
2: Section 12.4 - Create the Telemetry Identity Records Added missing '\' characters, to allow for easier copy/paste.
3: Section 4.6.5 - Build Object Storage Service Ring Files Added the following step: ---------- Start the openstack-swift-proxy service: # service openstack-swift-proxy start ----------
4: Section 2.4.2.1 - Launch the RabbitMQ Message Broker The required permissions were added a couple of days ago under BZ#1138680, and are now present in the guide.