a2d662d600
The XML root element of Docbook XML files should match the following format: <ELEMENT xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" xml:id="THE_XML_ID_OF_THE_ELEMENT"> Change-Id: I1e0804e2c5021bd78b77483f3156c5b069453555
50 lines
1.9 KiB
XML
50 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
version="5.0"
|
|
xml:id="ch_clients">
|
|
<title>Install and configure the OpenStack clients</title>
|
|
<para>The following sections contain information about working
|
|
with the OpenStack clients. Recall: in the previous section,
|
|
you used the <command>keystone</command> client.</para>
|
|
<para>You must install the client tools to complete the rest of
|
|
the installation.</para>
|
|
<para>Configure the clients on your desktop rather than on the
|
|
server so that you have a similar experience to your
|
|
users.</para>
|
|
<xi:include href="../common/section_cli_overview.xml"/>
|
|
<xi:include href="../common/section_cli_install.xml"/>
|
|
<xi:include href="../common/section_cli_openrc.xml"/>
|
|
|
|
<section xml:id="ch_clients_openrc_files">
|
|
<title>Create openrc.sh files</title>
|
|
|
|
<para>
|
|
As explained in <xref linkend="openrc-create"/>,
|
|
<phrase os="rhel;centos;fedora;opensuse;sles;ubuntu"> use the
|
|
credentials from <xref linkend="keystone-users"/> and</phrase>
|
|
create the following
|
|
<filename><replaceable>PROJECT</replaceable>-openrc.sh</filename>
|
|
files:
|
|
</para>
|
|
<itemizedlist>
|
|
<listitem>
|
|
<para>
|
|
<filename>admin-openrc.sh</filename> for the administrative user
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
<filename>demo-openrc.sh</filename> for the normal user:
|
|
<programlisting language="bash" audience="installer">export OS_USERNAME=demo
|
|
export OS_PASSWORD=<replaceable>DEMO_PASS</replaceable>
|
|
export OS_TENANT_NAME=demo
|
|
export OS_AUTH_URL=http://<replaceable>controller</replaceable>:35357/v2.0</programlisting>
|
|
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
</section>
|
|
</chapter>
|