<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 03:40:13 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Whamcloud Community JIRA</title>
    <link>https://jira.whamcloud.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.4.14</version>
        <build-number>940014</build-number>
        <build-date>05-12-2023</build-date>
    </build-info>


<item>
            <title>[LUDOC-98] Document new lctl replace_nids feature</title>
                <link>https://jira.whamcloud.com/browse/LUDOC-98</link>
                <project id="10070" key="LUDOC">Lustre Documentation</project>
                    <description>&lt;p&gt;This is to track documentation for the &quot;lctl replace_nids&quot; feature in &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1430&quot; title=&quot;Changing network address without --writeconf option&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1430&quot;&gt;&lt;del&gt;LU-1430&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;</description>
                <environment></environment>
        <key id="16440">LUDOC-98</key>
            <summary>Document new lctl replace_nids feature</summary>
                <type id="3" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11318&amp;avatarType=issuetype">Task</type>
                                            <priority id="1" iconUrl="https://jira.whamcloud.com/images/icons/priorities/blocker.svg">Blocker</priority>
                        <status id="6" iconUrl="https://jira.whamcloud.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="rhenwood">Richard Henwood</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                            <label>LB</label>
                    </labels>
                <created>Sat, 27 Oct 2012 17:07:12 +0000</created>
                <updated>Fri, 9 May 2014 20:09:29 +0000</updated>
                            <resolved>Fri, 9 May 2014 20:09:29 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                            <comments>
                            <comment id="48008" author="nrutman" created="Mon, 19 Nov 2012 13:14:03 +0000"  >&lt;p&gt;Doc:&lt;/p&gt;


&lt;h1&gt;&lt;a name=&quot;14.5ChangingaServerNID&quot;&gt;&lt;/a&gt;14.5 Changing a Server NID&lt;/h1&gt;
&lt;p&gt;If you need to change the NID on the MDT or an OST, a special command must be issued with all Lustre servers and clients down, except for the MGS.&lt;br/&gt;
Change a server NID in these situations:&lt;br/&gt;
&#9632; New server hardware is added to the file system, and the MDS or an OSS is being moved to the new machine&lt;br/&gt;
&#9632; New network card is installed in the server&lt;br/&gt;
&#9632; You want to reassign IP addresses&lt;/p&gt;

&lt;p&gt;The &lt;em&gt;replace_nids&lt;/em&gt; command differs from &lt;em&gt;tunefs.lustre --writeconf&lt;/em&gt; in that it does not erase the entire configuration log, precluding the need to &quot;writeconf&quot; all servers and re-specify all permanent parameter settings.  However, the &quot;writeconf&quot; method can still be used if desired.&lt;/p&gt;

&lt;p&gt;To change a server NID:&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Update the LNET configuration in the /etc/modprobe.conf file so the list of server NIDs (lctl list_nids) is correct.&lt;br/&gt;
The lctl list_nids command indicates which network(s) are configured to work with Lustre.&lt;br/&gt;
&#65532;Chapter 14 Lustre Maintenance 14-5&lt;/li&gt;
	&lt;li&gt;Shut down the file system in this order.&lt;br/&gt;
  a. Unmount the clients.&lt;br/&gt;
  b. Unmount the MDT.&lt;br/&gt;
  c. Unmount all OSTs.&lt;/li&gt;
	&lt;li&gt;If the MGS and MDS share a partition, start the MGS only:
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;mount -t lustre &amp;lt;MDT partition&amp;gt; -o nosvc &amp;lt;mount point&amp;gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
	&lt;li&gt;Run the &lt;em&gt;replace_nids&lt;/em&gt; command on the MGS.
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt; lctl replace_nids &amp;lt;devicename&amp;gt; &amp;lt;nid1&amp;gt;[,nid2,nid3 ...]&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;where &amp;lt;devicename&amp;gt; is the Lustre target name, e.g. myfs-OST0013&lt;/p&gt;&lt;/li&gt;
	&lt;li&gt;If the MGS and MDS share a partition, stop the MGS:
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;umount &amp;lt;mount point&amp;gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
	&lt;li&gt;Restart the file system in this order.&lt;br/&gt;
a. Mount the MDT (or the combined MGS/MDT).&lt;br/&gt;
b. Mount the OSTs.&lt;br/&gt;
c. Mount the clients.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;Note: The &lt;em&gt;replace_nids&lt;/em&gt; command also cleans all old, invalidated records out of the configuration log, while preserving all other current settings. &lt;br/&gt;
Note: The previous configuration log is backed up on the MGS disk with the suffix &apos;.bak&apos;.&lt;/p&gt;
</comment>
                            <comment id="48195" author="adilger" created="Wed, 21 Nov 2012 14:30:22 +0000"  >&lt;p&gt;Nathan, this would be better off in the form of a patch to the manual (as posted to the list last week), rather than a comment in this ticket. Don&apos;t get me wrong, I&apos;m happy to have this text from you, but we&apos;re trying to get more contributors to the manual, and if Richard and I are the only ones making the updates, the process and visibility into the manual will never improve for external contributors. &lt;/p&gt;</comment>
                            <comment id="48404" author="rhenwood" created="Tue, 27 Nov 2012 05:47:49 +0000"  >&lt;p&gt;Can you clarify: are there now two methods to change a NID depending on which version of Lustre is being used?&lt;/p&gt;</comment>
                            <comment id="48406" author="artem_blagodarenko" created="Tue, 27 Nov 2012 05:51:58 +0000"  >&lt;p&gt;This patch adds new method to change a NID. But you can use previous with --writeconf that is described here &lt;a href=&quot;http://wiki.lustre.org/manual/LustreManual20_HTML/LustreMaintenance.html#50438199_31353&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://wiki.lustre.org/manual/LustreManual20_HTML/LustreMaintenance.html#50438199_31353&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="48429" author="nrutman" created="Tue, 27 Nov 2012 14:45:38 +0000"  >&lt;p&gt;After the landing of &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1430&quot; title=&quot;Changing network address without --writeconf option&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1430&quot;&gt;&lt;del&gt;LU-1430&lt;/del&gt;&lt;/a&gt;, the method described here should be used.  In previous versions of Lustre, back to 1.6, the old version must be used.&lt;/p&gt;</comment>
                            <comment id="48931" author="adilger" created="Fri, 7 Dec 2012 17:53:23 +0000"  >&lt;p&gt;I don&apos;t think there is any confusion about the actual documentation or where it applies.  My comments are related to actually getting the text that Nathan wrote into the Lustre Manual.  Please see:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://wiki.whamcloud.com/display/PUB/Making+changes+to+the+Lustre+Manual&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://wiki.whamcloud.com/display/PUB/Making+changes+to+the+Lustre+Manual&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://wiki.whamcloud.com/display/PUB/Making+changes+to+the+Lustre+Manual+source&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://wiki.whamcloud.com/display/PUB/Making+changes+to+the+Lustre+Manual+source&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://wiki.whamcloud.com/display/PUB/Guidance+for+Manual+reviewers&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://wiki.whamcloud.com/display/PUB/Guidance+for+Manual+reviewers&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="65111" author="adilger" created="Tue, 27 Aug 2013 00:03:17 +0000"  >&lt;p&gt;Artem, could you please submit a patch to the Lustre manual with the text that Nathan pasted above.  Please see the following pages for details:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://wiki.hpdd.intel.com/display/PUB/Making+changes+to+the+Lustre+Manual&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://wiki.hpdd.intel.com/display/PUB/Making+changes+to+the+Lustre+Manual&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://wiki.hpdd.intel.com/display/PUB/Making+changes+to+the+Lustre+Manual+source&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://wiki.hpdd.intel.com/display/PUB/Making+changes+to+the+Lustre+Manual+source&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="65146" author="artem_blagodarenko" created="Tue, 27 Aug 2013 11:10:26 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/7459&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/7459&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="83671" author="rhenwood" created="Fri, 9 May 2014 20:09:29 +0000"  >&lt;p&gt;Artem&apos;s change landed a while ago.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="14510">LU-1430</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzvaw7:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5301</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>