<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    hi,<br>
    These are the Steps: <br>
    1) Check that all the bricks are running. It is okay if the brick
    that is going to be replaced is down. <br>
    2) Bring the brick that is going to be replaced down if not already.
    <br>
    &nbsp;&nbsp;&nbsp; - Get the pid of the brick by executing 'gluster volume
    &lt;volname&gt; status' <br>
    <br>
    12:37:49 <span class="moz-smiley-s2" title=":("></span> &#9889; gluster
    volume status <br>
    Status of volume: r2 <br>
    Gluster process&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Port&nbsp;&nbsp;&nbsp; Online&nbsp;&nbsp;&nbsp; Pid <br>
    ------------------------------------------------------------------------------

    <br>
    Brick pranithk-laptop:/home/gfs/r2_0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49152&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5342
    &lt;&lt;--- this is the brick we want to replace lets say. <br>
    Brick pranithk-laptop:/home/gfs/r2_1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49153&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5354 <br>
    Brick pranithk-laptop:/home/gfs/r2_2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49154&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5365 <br>
    Brick pranithk-laptop:/home/gfs/r2_3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49155&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5376 <br>
    .... <br>
    <br>
    &nbsp;&nbsp;&nbsp; - Login to the machine where the brick is running and kill the
    brick. <br>
    <br>
    root@pranithk-laptop - /mnt/r2 <br>
    12:38:33 <span class="moz-smiley-s2" title=":("></span> &#9889; kill -9
    5342 <br>
    <br>
    &nbsp;&nbsp;&nbsp; - Confirm that the brick is not running anymore and the other
    bricks are running fine. <br>
    <br>
    12:38:38 <span class="moz-smiley-s1" title=":)"></span> &#9889; gluster
    volume status <br>
    Status of volume: r2 <br>
    Gluster process&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Port&nbsp;&nbsp;&nbsp; Online&nbsp;&nbsp;&nbsp; Pid <br>
    ------------------------------------------------------------------------------

    <br>
    Brick pranithk-laptop:/home/gfs/r2_0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; N/A&nbsp;&nbsp;&nbsp; N&nbsp;&nbsp;&nbsp; 5342
    &lt;&lt;---- brick is not running, others are running fine. <br>
    Brick pranithk-laptop:/home/gfs/r2_1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49153&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5354 <br>
    Brick pranithk-laptop:/home/gfs/r2_2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49154&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5365 <br>
    Brick pranithk-laptop:/home/gfs/r2_3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49155&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5376 <br>
    .... <br>
    <br>
    3) Set up metadata so that heal will happen from the other brick in
    replica pair to the one that is going to be replaced (In this case
    it is from /home/gfs/r2_1 -&gt; /home/gfs/r2_5): <br>
    &nbsp;&nbsp;&nbsp;&nbsp; - Create a directory on the mount point that doesn't already
    exist. Then delete that directory, do the same for metadata
    changelog by doing setfattr. This operation marks the pending
    changelog which will tell self-heal damon/mounts to perform
    self-heal from /home/gfs/r2_1 to /home/gfs/r2_5. <br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mkdir /mnt/r2/&lt;name-of-nonexistent-dir&gt; <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rmdir /mnt/r2/&lt;name-of-nonexistent-dir&gt; <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setfattr -n trusted.non-existent-key -v abc /mnt/r2 <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setfattr -x trusted.non-existent-key&nbsp; /mnt/r2 <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOTE: '/mnt/r2' is the mount path. <br>
    <br>
    &nbsp;&nbsp;&nbsp; - Check that there are pending xattrs: <br>
    <br>
    getfattr -d -m. -e hex /home/gfs/r2_1 <br>
    # file: home/gfs/r2_1 <br>
    security.selinux=0x756e636f6e66696e65645f753a6f626a6563745f723a66696c655f743a733000

    <br>
    trusted.afr.r2-client-0=0x000000000000000300000002 &lt;&lt;----
    xattrs are marked from source brick pranithk-laptop:/home/gfs/r2_1 <br>
    trusted.afr.r2-client-1=0x000000000000000000000000 <br>
    trusted.gfid=0x00000000000000000000000000000001 <br>
    trusted.glusterfs.dht=0x0000000100000000000000007ffffffe <br>
    trusted.glusterfs.volume-id=0xde822e25ebd049ea83bfaa3c4be2b440 <br>
    <br>
    3) Replace the brick with 'commit force' option <br>
    - Execute replace-brick command <br>
    <br>
    root@pranithk-laptop - /mnt/r2 <br>
    12:58:46 <span class="moz-smiley-s1" title=":)"></span> &#9889; gluster
    volume replace-brick r2 `hostname`:/home/gfs/r2_0
    `hostname`:/home/gfs/r2_5 commit force <br>
    volume replace-brick: success: replace-brick commit successful <br>
    <br>
    - Check that the new brick is now online <br>
    root@pranithk-laptop - /mnt/r2 <br>
    12:59:21 <span class="moz-smiley-s1" title=":)"></span> &#9889; gluster
    volume status <br>
    Status of volume: r2 <br>
    Gluster process&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Port&nbsp;&nbsp;&nbsp; Online&nbsp;&nbsp;&nbsp; Pid <br>
    ------------------------------------------------------------------------------

    <br>
    Brick pranithk-laptop:/home/gfs/r2_5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49156&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5731
    &lt;&lt;&lt;---- new brick is online <br>
    Brick pranithk-laptop:/home/gfs/r2_1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49153&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5354 <br>
    Brick pranithk-laptop:/home/gfs/r2_2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49154&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5365 <br>
    Brick pranithk-laptop:/home/gfs/r2_3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 49155&nbsp;&nbsp;&nbsp; Y&nbsp;&nbsp;&nbsp; 5376 <br>
    ... <br>
    <br>
    - Once self-heal completes the changelogs will be removed. <br>
    <br>
    12:59:27 <span class="moz-smiley-s1" title=":)"></span> &#9889; getfattr
    -d -m. -e hex /home/gfs/r2_1 <br>
    getfattr: Removing leading '/' from absolute path names <br>
    # file: home/gfs/r2_1 <br>
    security.selinux=0x756e636f6e66696e65645f753a6f626a6563745f723a66696c655f743a733000

    <br>
    trusted.afr.r2-client-0=0x000000000000000000000000 &lt;&lt;----
    Pending changelogs are cleared. <br>
    trusted.afr.r2-client-1=0x000000000000000000000000 <br>
    trusted.gfid=0x00000000000000000000000000000001 <br>
    trusted.glusterfs.dht=0x0000000100000000000000007ffffffe <br>
    trusted.glusterfs.volume-id=0xde822e25ebd049ea83bfaa3c4be2b440 <br>
    <br>
    Pranith <br>
    <div class="" style="font-family:Consolas,'Lucida
Console',monospace;padding-left:7px;word-wrap:break-word;color:rgb(0,0,0);font-size:13px"><br>
    </div>
    <div class="moz-cite-prefix">On 08/25/2014 10:41 AM, B.K.Raghuram
      wrote:<br>
    </div>
    <blockquote
cite="mid:CAMRELkGvnJegFagzThTGdiQzrJ93YjB1W8FckKbdb_qfNPqNFw@mail.gmail.com"
      type="cite">
      <div dir="ltr">Had come across this suggestion in sometime back.
        Is this a valid way to go about replacing a brick or is it not
        safe?
        <div><br>
        </div>
        <div><a moz-do-not-send="true"
            href="http://blog.dave.vc/2013/08/replacing-lost-brick-in-gluster.html">http://blog.dave.vc/2013/08/replacing-lost-brick-in-gluster.html</a><br>
        </div>
      </div>
    </blockquote>
    <br>
  </body>
</html>