Operating System - HP-UX
1832616 Members
3398 Online
110043 Solutions
New Discussion

Re: Disk space at 99% used

 
SOLVED
Go to solution
Yvonne Butler
Regular Advisor

Disk space at 99% used

I've just installed the big brother client so that our unix servers can be monitored along with the NT servers by our helpdesk. However, the "disk" monitor is flashing red and reports:-

/opt (99%) has reached the defined disk space PANIC level (95%)

I don't have any more disk space available for this volume group but don't actually need to increase it anyway at present as this volume will not need to increase in size.

My question therefore is can I, and how do I, change the Panic Level for this logical volume?


5 REPLIES 5
Stefan Farrelly
Honored Contributor

Re: Disk space at 99% used

Youve got to change it in your big brother program - its nothing to do with HP-UX. So there must be a config file for it somewhere - either under /opt/ or on your NT server where your monitoring it.
Im from Palmerston North, New Zealand, but somehow ended up in London...
Ian Dennison_1
Honored Contributor

Re: Disk space at 99% used

Local standard here is to try and leave at least 5% free on all Lvols to allow for the potential for "unexpected growth".

Any chance you can trim some logfiles in this directory?

Other than adding space or reducing usage, changing the trigger value is the way to go.

Share and Enjoy! Ian
Building a dumber user
Helen French
Honored Contributor

Re: Disk space at 99% used

Hi,

Try this:

1) Do a 'bdf' in the server and check the file system usage.

2) If you have additional disk free, add this to the VG by 'vgextend'. Than increase the LV.

3) Try this command for finding out the large files in the file system:

# find /opt -xdev -size +10000 -exec ll {} \; > /tmp/bigfiles

4) Try this command for finding out the newly created files:

# find /var -xdev -type f -mtime -2 -exec ll {} \; > /tmp/newfiles

4) Read the document # BA961218001 in the HP's Technical Knowledge base.

HTH,
Shiju

Life is a promise, fulfill it!
Victor BERRIDGE
Honored Contributor
Solution

Re: Disk space at 99% used

Hi,
I dont know where you installed bb on your box, but at the home directory of bb you should find an etc directoy with a file called bb-dftab.
giving values >100 to the filesystem her would make them appear always green, if thats what you want, syntax:
/opt:101:101

All the best
Victor
Yvonne Butler
Regular Advisor

Re: Disk space at 99% used

Thanks everyone for your help. Big Brother is now operating correctly.