Updated Branches: refs/heads/master d0f30bfff -> 1a1875859
removing more install.sh references Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/1a187585 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/1a187585 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/1a187585 Branch: refs/heads/master Commit: 1a187585928e96e669f05872a5a5adbbe5752aa9 Parents: 03650de Author: David Nalley <[email protected]> Authored: Wed Oct 17 03:09:53 2012 -0400 Committer: David Nalley <[email protected]> Committed: Wed Oct 17 03:09:53 2012 -0400 ---------------------------------------------------------------------- .../en-US/management-server-install-multi-node.xml | 55 ++++++-------- 1 files changed, 24 insertions(+), 31 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/1a187585/docs/en-US/management-server-install-multi-node.xml ---------------------------------------------------------------------- diff --git a/docs/en-US/management-server-install-multi-node.xml b/docs/en-US/management-server-install-multi-node.xml index db4bca5..8ac70ac 100644 --- a/docs/en-US/management-server-install-multi-node.xml +++ b/docs/en-US/management-server-install-multi-node.xml @@ -27,45 +27,38 @@ <para>For your second and subsequent Management Servers, you will install the Management Server software, connect it to the database, and set up the OS for the Management Server. </para> <orderedlist> - <listitem><para>Perform the steps in <xref linkend="prepare-os"/>.</para> + <listitem> + <para> + Perform the steps in <xref linkend="prepare-os"/> and + <xref linkend="sect-source-buildrpm" /> or + <xref linkend="sect-source-builddebs" /> as appropriate. + </para> </listitem> - <listitem><para>Download the Management Server onto the additional host where it will run. Get the software from the following link.</para> - <para condition="cloudplatform"><ulink url="https://www.citrix.com/English/ss/downloads/">https://www.citrix.com/English/ss/downloads/</ulink></para> -<para condition="cloudstack"><ulink url="FIXME">FIXME</ulink></para> - <para condition="cloudplatform">You will need a <ulink url="http://www.citrix.com/lang/English/publicindex.asp?destURL=%2FEnglish%2FmyCitrix%2Findex.asp%3F">MyCitrix account</ulink>.</para> - </listitem> - <listitem><para>Install the packages. You should have a file in the form of â&PRODUCT;-VERSION-N-OSVERSION.tar.gzâ. Untar the file and then run the install.sh script inside it. Replace the file and directory names below with those you are using:</para> + <listitem> + <para> + Ensure that necessary services are started and set to start + on boot. <programlisting> -# tar xzf &PRODUCT;-VERSION-N-OSVERSION.tar.gz -# cd &PRODUCT;-VERSION-N-OSVERSION -# ./install.sh +<prompt>#</prompt> <command>service</command> rpcbind start +<prompt>#</prompt> <command>service</command> nfs start +<prompt>#</prompt> <command>chkconfig</command> nfs on +<prompt>#</prompt> <command>chkconfig</command> rpcbind on </programlisting> - <para>You should see a few messages as the installer prepares, followed by a list of choices.</para> - </listitem> - <listitem><para>Choose M to install the Management Server software.</para> - <programlisting> > M</programlisting> - </listitem> - <listitem><para>Wait for a message like âComplete! Done,â which indicates that the software was installed successfully.</para> + </para> </listitem> - <listitem><para>(RHEL or CentOS) When the installation is finished, run the following commands to start essential services (the commands might be different depending on your OS):</para> + <listitem> + <para> + Configure the database client. Note the absence of the + --deploy-as argument in this case. + (For more details about the arguments to this command, see + <xref linkend="management-server-install-db-external"/>.) + </para> <programlisting> -# service rpcbind start -# service nfs start -# chkconfig nfs on -# chkconfig rpcbind on + <prompt>#</prompt> <command>cloud-setup-databases</command> cloud:<replaceable>dbpassword</replaceable>@<replaceable>dbhost</replaceable> -e <replaceable>encryption_type</replaceable> -m <replaceable>management_server_key</replaceable> -k <replaceable>database_key</replaceable> </programlisting> </listitem> - <listitem><para>Configure the database client. Note the absence of the --deploy-as argument in this case. - (For more details about the arguments to this command, see <xref linkend="management-server-install-db-external"/>.) - </para> - <programlisting># cloud-setup-databases cloud:<dbpassword>@<dbhost> -e <encryption_type> -m <management_server_key> -k <database_key> - </programlisting> - </listitem> - <listitem><para>(Trial installations only) If you are running the hypervisor on the same machine with the Management Server, edit /etc/sudoers and add the following line:</para> - <programlisting>Defaults:cloud !requiretty</programlisting> - </listitem> <listitem><para>Configure the OS and start the Management Server:</para> - <programlisting># cloud-setup-management</programlisting> + <programlisting><prompt>#</prompt> <command>cloud-setup-management</command></programlisting> <para>The Management Server on this node should now be running.</para> </listitem> <listitem><para>Repeat these steps on each additional Management Server. </para></listitem>
