<?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: Disc space is gradually growing in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834748#M779209</link>
    <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Improperly patched, system and/or application, weblogic is quite famous for trouble. &lt;BR /&gt;&lt;BR /&gt;I would suggest checking patching of both the OS and weblogic and perhaps accommodating this growth with a larger filesystem.&lt;BR /&gt;&lt;BR /&gt;You might also have weblogic configured for temporary files in a bad location, that should be checked.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Tue, 01 Aug 2006 06:45:25 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2006-08-01T06:45:25Z</dc:date>
    <item>
      <title>Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834745#M779206</link>
      <description>When I start my application (weblogic) having lot of IO activity means read from a flat file, partition (usr/test) usage keeps on increasing from 40% and reaches 100% (6GB). Once it reaches 100% applications hangs.&lt;BR /&gt;There is no file (including hidden) generated in the partition usr/test.&lt;BR /&gt;Once the application is shutdown disc usage will be back to 40%.&lt;BR /&gt; &lt;BR /&gt;My question is when there are no files generated why disc space is used and also&lt;BR /&gt;I would like to know command to find which are all the process accessing the partition usr/test.&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Aug 2006 06:27:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834745#M779206</guid>
      <dc:creator>tslingaraju</dc:creator>
      <dc:date>2006-08-01T06:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834746#M779207</link>
      <description>If not already installed, get "lsof" : &lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.77/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.77/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry d brown jr</description>
      <pubDate>Tue, 01 Aug 2006 06:32:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834746#M779207</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2006-08-01T06:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834747#M779208</link>
      <description>fuser -c /usr/test &lt;BR /&gt;&lt;BR /&gt;that is if /usr/test is it own filesystem. &lt;BR /&gt;&lt;BR /&gt;lsof is better sometimes, but fuser comes with the system.</description>
      <pubDate>Tue, 01 Aug 2006 06:33:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834747#M779208</guid>
      <dc:creator>Marvin Strong</dc:creator>
      <dc:date>2006-08-01T06:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834748#M779209</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Improperly patched, system and/or application, weblogic is quite famous for trouble. &lt;BR /&gt;&lt;BR /&gt;I would suggest checking patching of both the OS and weblogic and perhaps accommodating this growth with a larger filesystem.&lt;BR /&gt;&lt;BR /&gt;You might also have weblogic configured for temporary files in a bad location, that should be checked.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 01 Aug 2006 06:45:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834748#M779209</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-08-01T06:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834749#M779210</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;You asked why it (*appears*) that no files are generated and yet disk utilization grows.&lt;BR /&gt;&lt;BR /&gt;It is a common practice to create (open) a temporary file in a program and immediately 'unlink(2)' it.  THis is the underlying system call to remove a file.  Once unlinked, only the owning process can access the file.  At process termination, the file and any allocated space vanish. The downside is that it is more difficult to find who or what is consuming space in a filesystem when something goes wrong.&lt;BR /&gt;&lt;BR /&gt;Running 'glance' or 'lsof' should assist you in in identifying the process in question, however, if your application needs more space, you are going to have to configure more, or change (configure) the application to use a different, larger filesystem.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Aug 2006 06:48:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834749#M779210</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-08-01T06:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834750#M779211</link>
      <description>Lsof is not working I will download from &lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.77/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.77/&lt;/A&gt;&lt;BR /&gt;Even fuser is not working, where to download.&lt;BR /&gt;&lt;BR /&gt;Application was working fine from past 3 years. Just from 2 months this problem started. &lt;BR /&gt;&lt;BR /&gt;du command will not show any increase in usage of the partition(du -sk).&lt;BR /&gt;bdf command will show the increase the usage.&lt;BR /&gt;&lt;BR /&gt;Actually load on the site is very less. IO activity is done by the scheduler in the application that periodically checks the files in particular directory and read the data and insert to the database.&lt;BR /&gt;&lt;BR /&gt;If temporary file is created it should reflect in (du -sk). &lt;BR /&gt;&lt;BR /&gt;I am thinking is there any paging or swapping is happening in the partition. &lt;BR /&gt;&lt;BR /&gt;This is the problem our client is facing; tomorrow I will be in client place to solve the issue. So I am collecting all possible option.&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Aug 2006 07:06:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834750#M779211</guid>
      <dc:creator>tslingaraju</dc:creator>
      <dc:date>2006-08-01T07:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834751#M779212</link>
      <description>fuser is a system command.  You do not need to download it.  However, you do need root access in order to see what you want to see.&lt;BR /&gt;&lt;BR /&gt;# /usr/sbin/fuser -cu /usr/test</description>
      <pubDate>Tue, 01 Aug 2006 08:44:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834751#M779212</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2006-08-01T08:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834752#M779213</link>
      <description>Tslingaraju,&lt;BR /&gt;&lt;BR /&gt;At the beginning I thought about a swap issue, even thought after reading everybody's answers they are most likely to be right than the swap theory, but you never know.&lt;BR /&gt;&lt;BR /&gt;Try with vmstat  2 50 and watch for the po field it should be 0.&lt;BR /&gt;&lt;BR /&gt;Also with swapinfo -tam check to see if /usr/test was configured as swap device or so.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Jaime.</description>
      <pubDate>Tue, 01 Aug 2006 09:01:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834752#M779213</guid>
      <dc:creator>Jaime Bolanos Rojas.</dc:creator>
      <dc:date>2006-08-01T09:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834753#M779214</link>
      <description>Almost certainly JRF has identified the culprit. This is absolutely standard behavior for temporary files --- and after the unlink is done there is no directory entry associated with the file. Also, there are no "hidden" files in UNIX. You should study your application's documentation to see if there is an environment variable or a configuration setting that will allow the temporary files to be written elsewhere.</description>
      <pubDate>Tue, 01 Aug 2006 09:03:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834753#M779214</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-08-01T09:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Disc space is gradually growing</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834754#M779215</link>
      <description>One more information is that earlier when this issue started weblogic home directory partition (/usr/opt/weblogic) means where weblogic installed was growing. &lt;BR /&gt;Some one suggested in the net to create TEMP environmental variable in HP-UX and point it to some different (/usr/test) partition. After that partition â  /usr/testâ   starts growing.&lt;BR /&gt;&lt;BR /&gt;TEMP variable is not all used in weblogic. &lt;BR /&gt;is HP-UX is using this variable.&lt;BR /&gt;&lt;BR /&gt;Any how I will work out with the solution provided by you people and share more detail.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Aug 2006 01:22:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disc-space-is-gradually-growing/m-p/3834754#M779215</guid>
      <dc:creator>tslingaraju</dc:creator>
      <dc:date>2006-08-02T01:22:34Z</dc:date>
    </item>
  </channel>
</rss>

