Skip to content

Commit

Permalink
changes to ch_ops_network-troubleshooting
Browse files Browse the repository at this point in the history
changed to fix deassociate to dissasociate in 4 places

Change-Id: Ifff13891807a272707d481c65de585b643fbb76a
  • Loading branch information
shillasaebi committed Nov 21, 2014
1 parent 44a5cbd commit 5944033
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/openstack-ops/ch_ops_network_troubleshooting.xml
Expand Up @@ -781,12 +781,12 @@ proto ICMP (1), length 84)
never directly related to an instance; it must always go through a fixed
IP.</para>

<section xml:id="deassociate_floating_ip">
<title>Manually Deassociating a Floating IP</title>
<section xml:id="dissasociate_floating_ip">
<title>Manually Dissaociating a Floating IP</title>

<para>Sometimes an instance is terminated but the floating IP was not
correctly de-associated from that instance. Because the database is in
an inconsistent state, the usual tools to deassociate the IP no longer
an inconsistent state, the usual tools to dissaociate the IP no longer
work. To fix this, you must manually update the database.<indexterm
class="singular">
<primary>IP addresses</primary>
Expand All @@ -808,7 +808,7 @@ proto ICMP (1), length 84)

<screen><prompt>mysql&gt;</prompt> <userinput>select * from floating_ips where fixed_ip_id = '&lt;fixed_ip_id&gt;';</userinput></screen>

<para>And finally, you can deassociate the floating IP:</para>
<para>And finally, you can disassociate the floating IP:</para>

<screen><prompt>mysql&gt;</prompt> <userinput>update floating_ips set fixed_ip_id = NULL, host = NULL where
fixed_ip_id = '&lt;fixed_ip_id&gt;';</userinput></screen>
Expand Down

0 comments on commit 5944033

Please sign in to comment.