<?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: BDF shows 100% - but no files on file system in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594095#M647845</link>
    <description>Hi there.&lt;BR /&gt;You seem to have open files on that file system. If the database is still up, the files will not be closed.&lt;BR /&gt;DBA should use shutdown abort command.&lt;BR /&gt;If you get the tool 'lsof', it might help you along.&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes</description>
    <pubDate>Mon, 15 Oct 2001 09:59:51 GMT</pubDate>
    <dc:creator>Alexander M. Ermes</dc:creator>
    <dc:date>2001-10-15T09:59:51Z</dc:date>
    <item>
      <title>BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594088#M647838</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;Our system has several file systems that are near full. In attempt to relieve that, the DBA cleaned out some tablespaces and delete most all files using sudo user.&lt;BR /&gt;&lt;BR /&gt;One would expect to see space available to grow but that is not the case. File system still shows 100% full.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Josee...</description>
      <pubDate>Fri, 12 Oct 2001 19:01:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594088#M647838</guid>
      <dc:creator>Josee Bourget-Thuma</dc:creator>
      <dc:date>2001-10-12T19:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594089#M647839</link>
      <description>This is usually caused by files being removed while they are still opened.&lt;BR /&gt;You can either attempt to stop any processes and unmount the fs, then remount it, or use something like lsof to try to find processes that have filesopen on the fs and then stop these processes.&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Oct 2001 19:06:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594089#M647839</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2001-10-12T19:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594090#M647840</link>
      <description>Let me make sure I understand... there are 0 files, but you are 100% full?  What is the output of your lvdisplay?  What does the Kb free column on the file system say?  Let me know.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Fri, 12 Oct 2001 19:08:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594090#M647840</guid>
      <dc:creator>Christopher McCray_1</dc:creator>
      <dc:date>2001-10-12T19:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594091#M647841</link>
      <description>Josee,&lt;BR /&gt;&lt;BR /&gt;This is due to the file that are opened by the procesess. Best thing is to unmount and mount it again. If you can't unmount, you need to kill the processes that are active on teh file system. Use fuser -u /dev/vgxx/lvolx to see the processes that are holding this logical volume up.&lt;BR /&gt;&lt;BR /&gt;Once it is unmounted and mounted, you will see it back 0%.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Fri, 12 Oct 2001 19:11:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594091#M647841</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-10-12T19:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594092#M647842</link>
      <description>Hi Josee:&lt;BR /&gt;&lt;BR /&gt;This is not an unusual situation in UNIX. A process can open a file, then unlink (rm) it;&lt;BR /&gt;and until that process closes it, the process can read, write, seek, etc. - there is no directory entry but the space is not returned to the filesystem until the file handle is closed. &lt;BR /&gt;&lt;BR /&gt;You can use fuser or a freeware utility lsof which is available from any of the HP-UX porting centers to find these processes.&lt;BR /&gt;&lt;BR /&gt;Clay</description>
      <pubDate>Fri, 12 Oct 2001 19:18:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594092#M647842</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-10-12T19:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594093#M647843</link>
      <description>Josee,&lt;BR /&gt;&lt;BR /&gt;    As others pointed out in this thread,&lt;BR /&gt;the culprit could be  a "running process"&lt;BR /&gt;which is writing to a file whose  "file handle"&lt;BR /&gt;is open.   That is why, even though you&lt;BR /&gt;don't see any files in the FS, it is writing&lt;BR /&gt;to the "file handle" which is consuming space.&lt;BR /&gt;&lt;BR /&gt;   You can do a fuser -cu  &lt;FILESYSTEM&gt;&lt;BR /&gt;and get the processes currently using&lt;BR /&gt;the filesystem.  Then, make sure you can&lt;BR /&gt;kill those processes without affecting&lt;BR /&gt;anything else on the system. If it is&lt;BR /&gt;a oracle-related process, check with the DBA.&lt;BR /&gt;&lt;BR /&gt;  Another good tool to use would be "lsof" .&lt;BR /&gt;It lists all open files on the system or&lt;BR /&gt;processes running on a system which have&lt;BR /&gt;open files.&lt;BR /&gt;&lt;BR /&gt;-raj&lt;/FILESYSTEM&gt;</description>
      <pubDate>Fri, 12 Oct 2001 19:19:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594093#M647843</guid>
      <dc:creator>Roger Baptiste</dc:creator>
      <dc:date>2001-10-12T19:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594094#M647844</link>
      <description>The statements about processes running on files which are removed are correct. More worrying though is that the database files were removed whilst the database was up.&lt;BR /&gt;The database will continue to run, but you will have problems closing it, if ORACLE you will will to "shutdown abort" and remember to check if it autostart on system bootup via /etc/inittab.&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Oct 2001 09:49:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594094#M647844</guid>
      <dc:creator>Pierce Byrne_1</dc:creator>
      <dc:date>2001-10-15T09:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594095#M647845</link>
      <description>Hi there.&lt;BR /&gt;You seem to have open files on that file system. If the database is still up, the files will not be closed.&lt;BR /&gt;DBA should use shutdown abort command.&lt;BR /&gt;If you get the tool 'lsof', it might help you along.&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes</description>
      <pubDate>Mon, 15 Oct 2001 09:59:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594095#M647845</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2001-10-15T09:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594096#M647846</link>
      <description>If you don't already have "lsof", then download it from here: &lt;A href="http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.55/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.55/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.55/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.55/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Then run it like this:&lt;BR /&gt;&lt;BR /&gt;lsof | grep filesystemnamehere&lt;BR /&gt;&lt;BR /&gt;It'll give you the processes that have a file open on the filesystemnamehere&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Oct 2001 10:49:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594096#M647846</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2001-10-15T10:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594097#M647847</link>
      <description>use the command fuser -u filesystem.This will give the process id kill the process this will free ur space.&lt;BR /&gt;&lt;BR /&gt;Jayaprakash</description>
      <pubDate>Mon, 15 Oct 2001 11:01:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594097#M647847</guid>
      <dc:creator>Jayaprakash_1</dc:creator>
      <dc:date>2001-10-15T11:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: BDF shows 100% - but no files on file system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594098#M647848</link>
      <description>fuser -cu /&lt;FILESYSTEM&gt;&lt;BR /&gt;&lt;BR /&gt;One or all of these may be hogging the i-nodes.  At you convienience shutdown the applications attached to the above PID's.  That should clear it.&lt;BR /&gt;&lt;BR /&gt;Tim&lt;/FILESYSTEM&gt;</description>
      <pubDate>Wed, 17 Oct 2001 14:34:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bdf-shows-100-but-no-files-on-file-system/m-p/2594098#M647848</guid>
      <dc:creator>Tim D Fulford</dc:creator>
      <dc:date>2001-10-17T14:34:14Z</dc:date>
    </item>
  </channel>
</rss>

