Update information for openSUSE

Based on testing the setup

Add a note that NetworkManager should not be used

Remove setence about asking for password since we pass the password
on the command line.

Change-Id: I73bde10c7df96d1502021f989da624586bb94a3f
This commit is contained in:
Andreas Jaeger 2013-10-13 11:51:45 +02:00
parent a1586f1c3c
commit 50aa59cfff
2 changed files with 17 additions and 7 deletions

View File

@ -59,7 +59,13 @@
<prompt>#</prompt> <userinput>chkconfig iptables on</userinput></screen> <prompt>#</prompt> <userinput>chkconfig iptables on</userinput></screen>
</note> </note>
<para>Next, create the configuration files for both <literal>eth0</literal> <para os="opensuse">When you setup your system, use the
traditional network scripts and do not use the
<literal>NetworkManager</literal>. You can change the settings also after
installation with the YaST network module:</para>
<screen os="opensuse"><prompt>#</prompt> <userinput>yast2 network</userinput></screen>
<para>Next, create the configuration for both <literal>eth0</literal>
and <literal>eth1</literal>. This guide uses and <literal>eth1</literal>. This guide uses
<literal>192.168.0.x</literal> address for the internal network and <literal>192.168.0.x</literal> address for the internal network and
<literal>10.0.0.x</literal> addresses for the external network. Make <literal>10.0.0.x</literal> addresses for the external network. Make
@ -131,6 +137,11 @@ ONBOOT=yes</programlisting>
</programlisting> </programlisting>
</para> </para>
</listitem> </listitem>
<listitem>
<para>
Setup a default route on the external network.
</para>
</listitem>
</itemizedlist> </itemizedlist>
</para> </para>
@ -262,15 +273,14 @@ hwclock -w</programlisting>
the system boots.</para> the system boots.</para>
<screen os="rhel;centos;fedora"><prompt>#</prompt> <userinput>service mysqld start</userinput> <screen os="rhel;centos;fedora"><prompt>#</prompt> <userinput>service mysqld start</userinput>
<prompt>#</prompt> <userinput>chkconfig mysqld on</userinput></screen> <prompt>#</prompt> <userinput>chkconfig mysqld on</userinput></screen>
<screen os="opensuse"><prompt>#</prompt> <userinput>systemctl enable mysqld.service</userinput> <screen os="opensuse"><prompt>#</prompt> <userinput>systemctl enable mysql.service</userinput>
<prompt>#</prompt> <userinput>systemctl start mysqld.service</userinput></screen> <prompt>#</prompt> <userinput>systemctl start mysql.service</userinput></screen>
<para os="rhel;centos;fedora;opensuse">Finally, it's a good idea to set a root password for your MySQL <para os="rhel;centos;fedora;opensuse">Finally, it's a good idea to set a root password for your MySQL
database. The OpenStack programs that set up databases and tables will database. The OpenStack programs that set up databases and tables will
prompt you for this password if it's set.</para> prompt you for this password if it's set.</para>
<screen os="rhel;centos;fedora;opensuse"><prompt>#</prompt> <userinput>mysqladmin password <replaceable>newPassword</replaceable></userinput></screen> <screen os="rhel;centos;fedora;opensuse"><prompt>#</prompt> <userinput>mysqladmin password <replaceable>newPassword</replaceable></userinput></screen>
<para os="rhel;centos;fedora;opensuse">Enter your desired password when prompted.</para>
</section> </section>
<section xml:id="basics-queue"> <section xml:id="basics-queue">
<title>Messaging Server</title> <title>Messaging Server</title>

View File

@ -9,7 +9,7 @@
<para>Install the Identity Service on the controller node:</para> <para>Install the Identity Service on the controller node:</para>
<screen os="ubuntu;deb"><prompt>#</prompt> <userinput>apt-get install keystone python-keystone python-keystoneclient</userinput></screen> <screen os="ubuntu;deb"><prompt>#</prompt> <userinput>apt-get install keystone python-keystone python-keystoneclient</userinput></screen>
<screen os="rhel;centos;fedora"><prompt>#</prompt> <userinput>yum install openstack-keystone python-keystoneclient</userinput></screen> <screen os="rhel;centos;fedora"><prompt>#</prompt> <userinput>yum install openstack-keystone python-keystoneclient</userinput></screen>
<screen os="opensuse"><prompt>#</prompt> <userinput>zypper install openstack-keystone python-keystoneclient</userinput></screen> <screen os="opensuse"><prompt>#</prompt> <userinput>zypper install openstack-keystone python-keystoneclient openstack-utils</userinput></screen>
</step> </step>
<step> <step>