You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ts...@apache.org on 2012/10/23 11:49:19 UTC

[41/50] [abbrv] git commit: CLOUDSTACK-345 - adding mdns_adv as a setting that needs to be modified

CLOUDSTACK-345 - adding mdns_adv as a setting that needs to be modified


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/f1105ff1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/f1105ff1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/f1105ff1

Branch: refs/heads/marvin-parallel
Commit: f1105ff1d329be74c8299836f4ebabde0bd59e7d
Parents: 7a940fc
Author: David Nalley <da...@gnsa.us>
Authored: Sat Oct 20 22:16:29 2012 -0400
Committer: David Nalley <da...@gnsa.us>
Committed: Sat Oct 20 22:16:29 2012 -0400

----------------------------------------------------------------------
 docs/en-US/hypervisor-host-install-libvirt.xml |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/f1105ff1/docs/en-US/hypervisor-host-install-libvirt.xml
----------------------------------------------------------------------
diff --git a/docs/en-US/hypervisor-host-install-libvirt.xml b/docs/en-US/hypervisor-host-install-libvirt.xml
index 34fe4c4..c3e37c5 100644
--- a/docs/en-US/hypervisor-host-install-libvirt.xml
+++ b/docs/en-US/hypervisor-host-install-libvirt.xml
@@ -34,22 +34,20 @@
             <programlisting language="Bash">apt-get install libvirt-bin</programlisting>
         </listitem>
         <listitem>
-            <para>In order to have live migration working libvirt has to listen for unsecured TCP connections.</para>
-            <programlisting language="Bash">vi /etc/libvirt/libvirtd.conf</programlisting>
+            <para>In order to have live migration working libvirt has to listen for unsecured TCP connections. We also need to turn off libvirts attempt to use Multicast DNS advertising. Both of these settings are in <filename>/etc/libvirt/libvirtd.conf</filename></para>
             <para>Set the following paramaters:</para>
             <programlisting>listen_tls = 0</programlisting>
             <programlisting>listen_tcp = 1</programlisting>
             <programlisting>tcp_port = 16059</programlisting>
             <programlisting>auth_tcp = "none"</programlisting>
+            <programlisting>mdns_adv = 0</programlisting>
         </listitem>
         <listitem>
             <para>Turning on "listen_tcp" in libvirtd.conf is not enough, we have to change the parameters as well:</para>
-            <para>On RHEL or CentOS:</para>
-            <programlisting language="Bash">vi /etc/sysconfig/libvirtd</programlisting>
+            <para>On RHEL or CentOS modify <filename>/etc/sysconfig/libvirtd</filename>:</para>
             <para>Uncomment the following line:</para>
             <programlisting>#LIBVIRTD_ARGS="--listen"</programlisting>
-            <para>On Ubuntu:</para>
-            <programlisting language="Bash">vi /etc/init/libvirt-bin.conf</programlisting>
+            <para>On Ubuntu: modify <filename>/etc/init/libvirt-bin.conf</filename></para>
             <para>Change the following line (at the end of the file):</para>
             <programlisting>exec /usr/sbin/libvirtd -d</programlisting>
             <para>to (just add -l)</para>