- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: VAR full
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 08:57 AM
04-06-2001 08:57 AM
We are running rogue wave, which I wonder if its allocating space...?
Any advice greatly appreciated!
Mike
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:05 AM
04-06-2001 09:05 AM
Re: VAR full
vgdisplay -v vg00 (check free PE,1PE=4M).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:09 AM
04-06-2001 09:09 AM
Re: VAR full
show.
In my case:
LV Size=616M
bdf
614400
du -sk /var
15583
which is around the space used in my /var (from bdf)
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:12 AM
04-06-2001 09:12 AM
Re: VAR full
Thanks for the quick reply. I did the two checks and (using the lvdisplay) it shows 250 avail and 250 alocated with everything as current (???) and with vgdisplay it shows total PE = 2168, allocated=1269 and free=899.
What exactly am I looking for?
Thanks,
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:24 AM
04-06-2001 09:24 AM
Re: VAR full
cd /var
du -k|more and find /var -size +100.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:25 AM
04-06-2001 09:25 AM
Re: VAR full
Your lvol looks fine 250 current (not requiring mirror synchronisation or failed disk bits) Physical extents.. 1GB lvol size.
bdf should show under the kbytes column lvol Size * 1024
du will show the size used, and should be related back to bdf used column not to the kbytes column.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:27 AM
04-06-2001 09:27 AM
Re: VAR full
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 09:35 AM
04-06-2001 09:35 AM
Re: VAR full
If you have OJFS, use the getext command to find for preallocation.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 10:45 AM
04-06-2001 10:45 AM
Re: VAR full
cd /var
du -x|sort -rn|more
this should show the culprits using the most space
I would imagine that you may have some crash data in /var/adm/crash, some syslog stuff in /var/adm/syslog, /var/tmp may have some stuff, print goes in /var/spool, cron logs go in /var/spool/cron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 11:58 AM
04-06-2001 11:58 AM
Re: VAR full
Here is the information from some of the recommended commands. I am not confusing df and du per say...what is confusing me is that bdf is saying I have 1 GB of space for /var and it is full; du is saying there is only 22 megs (now) of data in /var.
So what is taking up the other 978 megs of space?
The "df -b" command produced ...
/var (/dev/vg00/lvol8 ) : 106 Kbytes free
The "bdf" command produced ...
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol 1024000 1024000 0 100% /var
The "du -sk /var" command produced ...
22444
The "find /var -size +100" command produced ...
/var/opt/ignite/local/install.log
/var/opt/perf/metdesc
/var/opt/perf/rxitemid
/var/opt/perf/status.scope
/var/opt/perf/status.alarmgen
/var/adm/syslog/syslog.log
/var/adm/btmp
/var/adm/qhap.log
/var/mail/root
/var/sam/log/samlog
/var/sam/log/samlog.old
/var/sam/boot.config
/var/stm/config/tools/diagnose/summit_crc_b
/var/stm/config/tools/diagnose/summit_crc_c
/var/stm/config/tools/verify/motestdata
/var/stm/config/tools/verify/summit_crc_b
/var/stm/config/tools/verify/summit_crc_c
/var/stm/data/uut_status
/var/stm/logs/sys/activity_log
/var/stm/logs/sys/diaglogd_activity_log
Hope this helps!
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 12:21 PM
04-06-2001 12:21 PM
SolutionThe normal way to cure this is find the process using something lik efuser, or reboot the system and see if that frees up the space.
If it does, monitor var closely and try to discover which process is writing to it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2001 04:43 PM
04-06-2001 04:43 PM
Re: VAR full
Check if you have a backup of /var before you execute a shutdown!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2001 07:10 AM
04-07-2001 07:10 AM
Re: VAR full
Thanks for all the help and great advice. As it turns out, the problem was a process which was still running (Qualex), but was having some difficulty.
I used fuser -cu /var to see what was touching the drive and started examining and removing the processes one by one. When I stopped the qhap process (Qualex) my var went from 100% used to 4% used.
I restarted the machine, including Qualex, and the var dir has stayed where it should be. Now I just have to watch Qualex to see what was going on!
Thanks again!