From 5a3c91b558c5a40ab837dc7dd9f06b1321e2c5aa Mon Sep 17 00:00:00 2001 From: zhangjl Date: Wed, 3 Aug 2016 02:00:17 +0000 Subject: [PATCH] Fix the mistakes in Installation Guide doc Following the doc in install-guide, some code is out of date. First, according to http://docs.openstack.org/mitaka/install-guide-rdo/, maybe, it`s better to using v3 commands replace the olds in creating endpoints. Second, add xinetd package in install requirements. Closes-bug: #1608916 Signed-off-by: zhangjl Change-Id: I5bb448479156dbc805c7ecae00d2f694850b24c0 --- doc/source/deploy/install-guide.rst | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/doc/source/deploy/install-guide.rst b/doc/source/deploy/install-guide.rst index cf8804b238..b985605235 100644 --- a/doc/source/deploy/install-guide.rst +++ b/doc/source/deploy/install-guide.rst @@ -109,12 +109,22 @@ Configure the Identity service for the Bare Metal service registering the service (above), to create the endpoint, and replace IRONIC_NODE with your Bare Metal service's API node:: + openstack endpoint create --region RegionOne \ + baremetal admin http://IRONIC_NODE:6385 + openstack endpoint create --region RegionOne \ + baremetal public http://IRONIC_NODE:6385 + openstack endpoint create --region RegionOne \ + baremetal internal http://IRONIC_NODE:6385 + + If only keystone v2 API is available, use this command instead:: + openstack endpoint create --region RegionOne \ --publicurl http://IRONIC_NODE:6385 \ --internalurl http://IRONIC_NODE:6385 \ --adminurl http://IRONIC_NODE:6385 \ baremetal + Set up the database for Bare Metal ---------------------------------- @@ -823,10 +833,10 @@ node(s) where ``ironic-conductor`` is running. sudo apt-get install xinetd tftpd-hpa syslinux-common pxelinux Fedora 21/RHEL7/CentOS7: - sudo yum install tftp-server syslinux-tftpboot + sudo yum install tftp-server syslinux-tftpboot xinetd Fedora 22 or higher: - sudo dnf install tftp-server syslinux-tftpboot + sudo dnf install tftp-server syslinux-tftpboot xinetd #. Using xinetd to provide a tftp server setup to serve ``/tftpboot``. Create or edit ``/etc/xinetd.d/tftp`` as below::