<?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: /var is full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765089#M260150</link>
    <description>&lt;BR /&gt;Hi Sapi,&lt;BR /&gt;&lt;BR /&gt;Check which folder/file is taking more space in /var using command,&lt;BR /&gt; du -skx  /var/* |sort -nr | head -25&lt;BR /&gt;&lt;BR /&gt;it will list the folders with size in kb.&lt;BR /&gt;&lt;BR /&gt;delete the unwanted files from these.Check also &lt;BR /&gt;/var/adm/crash folder and clear if there is crash dumb created.&lt;BR /&gt;&lt;BR /&gt;Cheers!!&lt;BR /&gt;sysadm&lt;BR /&gt;</description>
    <pubDate>Tue, 04 Apr 2006 04:14:59 GMT</pubDate>
    <dc:creator>sysadm_1</dc:creator>
    <dc:date>2006-04-04T04:14:59Z</dc:date>
    <item>
      <title>/var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765086#M260147</link>
      <description>all,&lt;BR /&gt;&lt;BR /&gt;I have server that sometime /var is full (100%) in bdf command.&lt;BR /&gt;&lt;BR /&gt;# du -sk /var&lt;BR /&gt;526264  /var&lt;BR /&gt;# bdf /var&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vg00/lvol7    2097152 2097152       0  100% /var&lt;BR /&gt;&lt;BR /&gt;why ??</description>
      <pubDate>Tue, 04 Apr 2006 03:54:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765086#M260147</guid>
      <dc:creator>sapi</dc:creator>
      <dc:date>2006-04-04T03:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765087#M260148</link>
      <description>Shalom sapi,&lt;BR /&gt;&lt;BR /&gt;Most likely there is a file deleted but a process still has the filehandle open. Therefore the space is not available.&lt;BR /&gt;&lt;BR /&gt;Id the processes on /var&lt;BR /&gt;&lt;BR /&gt;fuser -cu /var&lt;BR /&gt;&lt;BR /&gt;Kill the procs on /var&lt;BR /&gt;&lt;BR /&gt;# NOTE: This may kill your entire system.&lt;BR /&gt;fuser -cuk /var&lt;BR /&gt;&lt;BR /&gt;Identify actual files&lt;BR /&gt;&lt;BR /&gt;cd /var&lt;BR /&gt;du -k | sort -rn | more&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 04 Apr 2006 03:59:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765087#M260148</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-04-04T03:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765088#M260149</link>
      <description>Hi Sapi, &lt;BR /&gt;&lt;BR /&gt;Find out what occupies more on /var by the following command. &lt;BR /&gt;&lt;BR /&gt;# du -skx /usr/* | sort -nr | head -25&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Tue, 04 Apr 2006 04:05:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765088#M260149</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-04-04T04:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765089#M260150</link>
      <description>&lt;BR /&gt;Hi Sapi,&lt;BR /&gt;&lt;BR /&gt;Check which folder/file is taking more space in /var using command,&lt;BR /&gt; du -skx  /var/* |sort -nr | head -25&lt;BR /&gt;&lt;BR /&gt;it will list the folders with size in kb.&lt;BR /&gt;&lt;BR /&gt;delete the unwanted files from these.Check also &lt;BR /&gt;/var/adm/crash folder and clear if there is crash dumb created.&lt;BR /&gt;&lt;BR /&gt;Cheers!!&lt;BR /&gt;sysadm&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Apr 2006 04:14:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765089#M260150</guid>
      <dc:creator>sysadm_1</dc:creator>
      <dc:date>2006-04-04T04:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765090#M260151</link>
      <description>Hi sapi,&lt;BR /&gt;&lt;BR /&gt;since your du shows about 500 Mb used while bdf says /var is 2Gb check for deleted but still allocated files:&lt;BR /&gt;&lt;BR /&gt;# lsof +L1 /var | grep VREG | grep -v mem | sort -k7n&lt;BR /&gt;&lt;BR /&gt;You my need to restart the process holding the biggest ones.&lt;BR /&gt;&lt;BR /&gt;rgds&lt;BR /&gt;HGH&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Apr 2006 04:42:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765090#M260151</guid>
      <dc:creator>Hemmetter</dc:creator>
      <dc:date>2006-04-04T04:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765091#M260152</link>
      <description>hmmm...&lt;BR /&gt;&lt;BR /&gt;/var is full at 12:00 AM and at 03:00 PM, /var is back to normal (27%). I don't do anything. &lt;BR /&gt;hoe to check that there are some applications that used /var for instant time?you know that, with du -sk and bdf command have different yield.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Apr 2006 22:12:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765091#M260152</guid>
      <dc:creator>sapi</dc:creator>
      <dc:date>2006-04-04T22:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765092#M260153</link>
      <description>Sapi,&lt;BR /&gt;&lt;BR /&gt;/var/tmp is used to vi files. If someone was vi-ing a large file it could have temporarily filled up var.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;JASH</description>
      <pubDate>Wed, 05 Apr 2006 03:08:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765092#M260153</guid>
      <dc:creator>JASH_2</dc:creator>
      <dc:date>2006-04-05T03:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765093#M260154</link>
      <description>Hi Sapi, &lt;BR /&gt;do you have scheduled jobs at those times? what is in your crontab?  &lt;BR /&gt;crontab -l &lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Apr 2006 05:14:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765093#M260154</guid>
      <dc:creator>Ronaldinho</dc:creator>
      <dc:date>2006-04-05T05:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765094#M260155</link>
      <description>check with fuser as,&lt;BR /&gt;&lt;BR /&gt;# fuser -u /var&lt;BR /&gt;&lt;BR /&gt;will give that /var/ directory usage.&lt;BR /&gt;&lt;BR /&gt;Another reason may be transferring files to that directory or log file(s) are getting filled.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Wed, 05 Apr 2006 05:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765094#M260155</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-04-05T05:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765095#M260156</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Because installation of patches, I suggest also to use the cleanup command. See man page for more details.&lt;BR /&gt;&lt;BR /&gt;Roland</description>
      <pubDate>Wed, 05 Apr 2006 09:21:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765095#M260156</guid>
      <dc:creator>Roland Piette</dc:creator>
      <dc:date>2006-04-05T09:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: /var is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765096#M260157</link>
      <description>all,&lt;BR /&gt;&lt;BR /&gt;there is normal condition in /var:&lt;BR /&gt;$ sudo du -sk *&lt;BR /&gt;16      X11&lt;BR /&gt;11176   ace&lt;BR /&gt;127368  adm&lt;BR /&gt;408     asx&lt;BR /&gt;3408    dmi&lt;BR /&gt;304     dt&lt;BR /&gt;0       empty&lt;BR /&gt;0       home&lt;BR /&gt;104     hponly&lt;BR /&gt;0       ifor&lt;BR /&gt;0       lost+found&lt;BR /&gt;14608   mail&lt;BR /&gt;0       news&lt;BR /&gt;0       obam&lt;BR /&gt;162384  opt&lt;BR /&gt;0       parmgr&lt;BR /&gt;6952    preserve&lt;BR /&gt;712     rbootd&lt;BR /&gt;24      run&lt;BR /&gt;656     sam&lt;BR /&gt;8       sdconf.rec&lt;BR /&gt;472     spool&lt;BR /&gt;16      statmon&lt;BR /&gt;50240   stm&lt;BR /&gt;149824  tmp&lt;BR /&gt;2176    tombstones&lt;BR /&gt;0       uucp&lt;BR /&gt;400     vx&lt;BR /&gt;96      yp&lt;BR /&gt;$ bdf /var&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vg00/lvol7    2097152  545816 1548456   26% /var&lt;BR /&gt;&lt;BR /&gt;there are applications that used /var/tmp but in cronjob, there is a job that deleted file under directory /var/tmp every 5 minutes.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Apr 2006 09:52:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/var-is-full/m-p/3765096#M260157</guid>
      <dc:creator>sapi</dc:creator>
      <dc:date>2006-04-06T09:52:37Z</dc:date>
    </item>
  </channel>
</rss>

