<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: removing mount point in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373867#M196100</link>
    <description>Denise,&lt;BR /&gt;&lt;BR /&gt;I've got what may be a dumb question for you. Even though the filesystem mounted at /usr is in VG00, is the filesystem mounted at /usr/uni actually part of VG00?  I ask because it doesn't have to be.  It's not the mountpoint that makes it part of VG00, it's the logical volume that the fileystem resides on that's part of VG00.&lt;BR /&gt;&lt;BR /&gt;Check the output of "bdf" and see if it really is part of VG00 or not.  If it's not, you can stop all the processes using that filesystem and increase the logical volume and filesystem while the system is up even if you don't have Online JFS.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Seth</description>
    <pubDate>Tue, 07 Sep 2004 20:22:32 GMT</pubDate>
    <dc:creator>Seth Parker</dc:creator>
    <dc:date>2004-09-07T20:22:32Z</dc:date>
    <item>
      <title>removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373860#M196093</link>
      <description>I have a question on removing a mount point under vg00. I believe the 11.0 server has Online JFS and was wondering if OnlineJFS can be used to remove the mount point? This mount point will no longer be needed. Can this be done on the fly? I am asking because I see some threads where SAs were having problems with reducing a filesystem. Can removing a mountpoint be done on the fly without bringing the server into single user mode, even if the mountpoint is in the vg00 group?&lt;BR /&gt;&lt;BR /&gt;Much appreciative for your inputs. &lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 07 Sep 2004 14:50:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373860#M196093</guid>
      <dc:creator>denise_7</dc:creator>
      <dc:date>2004-09-07T14:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373861#M196094</link>
      <description>Do you mean the filesystem mounted or just the directory you are using to mount the filesystem ?&lt;BR /&gt;&lt;BR /&gt;bottomline is, you cannot unmount a filesystem if process(es) has open files in the filesystem.&lt;BR /&gt;&lt;BR /&gt;If you have a filesystem mounted in the "mountpoint",execute fuser command figure out the processes using the filesystem&lt;BR /&gt;&lt;BR /&gt;# fuser -cu /mountpoint | xargs -n1 ps -fp&lt;BR /&gt;&lt;BR /&gt;If you dont see process listing from the above command then you can execute umount command unmount the filesystem&lt;BR /&gt;&lt;BR /&gt;If you do see processes using the filesystem, then you need to kill those processes.</description>
      <pubDate>Tue, 07 Sep 2004 14:59:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373861#M196094</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-09-07T14:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373862#M196095</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Removing a mount point is quivalent to removing / deleting a filesystem. you can do this on the fly as long as the filesystem / mount point is not in use. for eg the mount point is /opt/mount_dir&lt;BR /&gt;&lt;BR /&gt;to remove this,&lt;BR /&gt;&lt;BR /&gt;bdf /opt/mount_dir&lt;BR /&gt;/dev/vg00/lmount_dir /opt/mount_dir ....&lt;BR /&gt;&lt;BR /&gt;fuser -cu /opt/mount_dir&lt;BR /&gt;&lt;BR /&gt;if no process is listed as using /opt/mount_dir, you can unmount the filesystem and use lvremove to remove it. If there are processes listed as using /opt/mount_dir, you can kill all of them if you are sure you are not going to harm the system.&lt;BR /&gt;&lt;BR /&gt;fuser -ck /opt/mount_dir&lt;BR /&gt;&lt;BR /&gt;Do man fuser for more info on the command.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Sep 2004 14:59:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373862#M196095</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2004-09-07T14:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373863#M196096</link>
      <description>Hi Denise,&lt;BR /&gt;&lt;BR /&gt;Which mount point are you trying to remove?. &lt;BR /&gt;&lt;BR /&gt;If it is not a OS filesystem like /stand,/usr, /var,/opt etc., you can stop the processes accessing that filesystem and then unmount it.  Say if /dev/vg00/lvol15 is mounted on /apps1 and if you no longer use apps1, then do&lt;BR /&gt;&lt;BR /&gt;#fuser -ku /dev/vg00/lvol15&lt;BR /&gt;#umount /apps1&lt;BR /&gt;#lvremove /dev/vg00/lvol15&lt;BR /&gt;#rm -rf /apps1&lt;BR /&gt;&lt;BR /&gt;Make sure you don't do it for any of the OS related filesystems.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Tue, 07 Sep 2004 15:03:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373863#M196096</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-09-07T15:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373864#M196097</link>
      <description>I am mixing up something. Actually, this is a 11.0 server with OnlineJFS. What I need to do is increase a mount point. This mount point is part of vg00, but it is at /usr/uni (unicenter). &lt;BR /&gt;&lt;BR /&gt;My take on this is, I can increase this on the fly using OnlineJFS, and the server does not have to be brought down in single user mode. &lt;BR /&gt;&lt;BR /&gt;Forget about removing a file system, I understand how to do this.&lt;BR /&gt;&lt;BR /&gt;Sorry for the confusion, gents.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 07 Sep 2004 15:18:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373864#M196097</guid>
      <dc:creator>denise_7</dc:creator>
      <dc:date>2004-09-07T15:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373865#M196098</link>
      <description>To increase the filesystem size, you dont have bring down the system to single-user mode as long as you have OnlineJFS.&lt;BR /&gt;&lt;BR /&gt;# cd /usr/uni&lt;BR /&gt;# bdf .&lt;BR /&gt;&lt;BR /&gt;&lt;FINDOUT the="" lvol="" device="" file=""&gt;&lt;BR /&gt;&lt;BR /&gt;# lvextend -L &lt;NEW-SIZE-OF-LV-IN mb=""&gt; /dev/vg00/&lt;LVOL-DEVICE-FILE&gt;&lt;BR /&gt;&lt;BR /&gt;# fsadm -F vxfs -b &lt;NEW-SIZE-OF-LV-IN-MB&gt;b /usr/uni&lt;BR /&gt;&lt;BR /&gt;Note the "b" suffix to the size of the LV in the fsadm command.&lt;/NEW-SIZE-OF-LV-IN-MB&gt;&lt;/LVOL-DEVICE-FILE&gt;&lt;/NEW-SIZE-OF-LV-IN&gt;&lt;/FINDOUT&gt;</description>
      <pubDate>Tue, 07 Sep 2004 15:23:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373865#M196098</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-09-07T15:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373866#M196099</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Yes. If you have OnlineJFS, you can easily increase the mount point's size (provided it is not 100%) online. The commands are&lt;BR /&gt;&lt;BR /&gt;#lvextend -L 2000 /dev/vg00/lvolx&lt;BR /&gt;#fsadm -b 2000m /usr/uni&lt;BR /&gt;&lt;BR /&gt;2000 is for example. It's the total size of the filesystem after you increased it. If it is at 1000 MB and if you are going to increase it by another 1000 MB, then it will be "-L 2000".&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Tue, 07 Sep 2004 15:24:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373866#M196099</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-09-07T15:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373867#M196100</link>
      <description>Denise,&lt;BR /&gt;&lt;BR /&gt;I've got what may be a dumb question for you. Even though the filesystem mounted at /usr is in VG00, is the filesystem mounted at /usr/uni actually part of VG00?  I ask because it doesn't have to be.  It's not the mountpoint that makes it part of VG00, it's the logical volume that the fileystem resides on that's part of VG00.&lt;BR /&gt;&lt;BR /&gt;Check the output of "bdf" and see if it really is part of VG00 or not.  If it's not, you can stop all the processes using that filesystem and increase the logical volume and filesystem while the system is up even if you don't have Online JFS.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Seth</description>
      <pubDate>Tue, 07 Sep 2004 20:22:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/3373867#M196100</guid>
      <dc:creator>Seth Parker</dc:creator>
      <dc:date>2004-09-07T20:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: removing mount point</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/5791349#M481717</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Please follow the below steps to remove the mount point and release the storage space&lt;/P&gt;&lt;P&gt;umont the mountpoint&lt;BR /&gt;#umount &amp;lt;mount point name&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Comment the mount point in fstab file&lt;BR /&gt;#vi /etc/fstab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Removing the logical volume&lt;BR /&gt;#lvremove /dev/datavg17/lvdata17&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Deactivate the volume group&lt;BR /&gt;#vgchange -a n datavg17 //if this is not added on cluster&lt;BR /&gt;OR&lt;BR /&gt;#vgchange -c n datavg17 //if this added via cluster&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;export the volume group&lt;BR /&gt;#vgexport datavg17&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there is requirement to remove VG then&lt;BR /&gt;#vgreduce -f /dev/vg09 /dev/dsk/c1t0d7s6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Sep 2012 09:31:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-mount-point/m-p/5791349#M481717</guid>
      <dc:creator>sumakuma2011</dc:creator>
      <dc:date>2012-09-03T09:31:02Z</dc:date>
    </item>
  </channel>
</rss>

