- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: / at 91%
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
09-11-2001 05:03 AM
09-11-2001 05:03 AM
/ at 91%
When I make a bdf, my / was at 91%
But yesterday, it was at 66%
Nothing change on the server, no new file?
Bad statistics?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 05:07 AM
09-11-2001 05:07 AM
Re: / at 91%
Hope this helps.
rri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 05:09 AM
09-11-2001 05:09 AM
Re: / at 91%
Hope this helps.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 05:10 AM
09-11-2001 05:10 AM
Re: / at 91%
most likely a coredump has been written due to a died application.
Go with "fine / -name core -print" to locate it.
Check if your /var/adm/syslog/syslog.log contains information.
In addition, it would be helpfull, if you could qualify the amount of MB you lost.
Best regards
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 05:32 AM
09-11-2001 05:32 AM
Re: / at 91%
Either big cron file or you might have perform backup and it has created file in /dev/rmt/
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 05:41 AM
09-11-2001 05:41 AM
Re: / at 91%
Look for 'core' files and look for files in /dev that don't belong there (i.e. regular files as opposed to non-character-special files beginning with "c" in the mode bits field (the first) as output by 'ls'.
It is likely that a tape backup device file specification was mis-keyed and instead of "0m" (zero) the letter "o" was substituted.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 06:59 AM
09-11-2001 06:59 AM
Re: / at 91%
To find the location of your offender:
# for a dir-by-dir summary
du -kxs /* | sort -rn | more
# for the whole list
du -kx / | sort -rn | more
All the best,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 07:10 AM
09-11-2001 07:10 AM
Re: / at 91%
# find / -local -size +30000 -print
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2001 09:09 AM
09-11-2001 09:09 AM
Re: / at 91%
While the system reports and enforces writes based on the percentage, the default size for / in HP-UX 11.0 is about 86MB. A simple core file can make up the 30% difference between days.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 11:22 AM
09-12-2001 11:22 AM
Re: / at 91%
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 12:23 PM
09-12-2001 12:23 PM
Re: / at 91%
What your observation tells me is this:
1. Someone or something created an enormous file (one or more) under /.
2. One or more processes had the file open.
3. The file was deleted.
4. bdf would still show the space as used until every last proc using that file was killed.
5. Rebooting killed said proc(s).
6. bdf now reflects reality.
All the best,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 12:46 PM
09-12-2001 12:46 PM
Re: / at 91%
The suggestions so far have been comprehensive covering all possibilities.
Since you say, only a reboot helped clearing
the space, a runaway process writing into
the / filesystem could have been the culprit.
To figure out such processes in the future:
* Make use of top or glance and see which
process is consuming a lot of CPU time
rapidly.
* look at ps listing and see the CPU times
of processes which are changing.
Reboot may have solved the problem , but
it could be a temporary lull, before it
occurs again. (rest of the things being
the same).
From a File check point of view:
find / -xdev -print >/tmp/filelist
and then a
du -sk on the files listed in /tmp/filelist
would give you a clue on the largest files
under root. (-xdev stops scanning below
root filesystem).
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 01:18 PM
09-12-2001 01:18 PM
Re: / at 91%
Just a few additions to what others have already said. It could be a log file that was growing and was "rolled" when you booted. If it was /var growing I'd think something in /var/adm and perhaps something was writing much to /var/adm/syslog/syslog.log. But since this is /...
To help identify the culprit, you can narrow it down to suspect directories like this:
find / -type d -xdev | xargs du -sk >/file1
Wait awhile (30 minutes?)
find / -type d -xdev | xargs du -sk >/file2
join -j 2 file1 file2 >file3
file3 will be formatted as:
directory firstsize secondsize
Simply look for large discreprencies between the first and second sizes to narrow down to a directory. Then you can hopefully identify the file.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 01:34 PM
09-12-2001 01:34 PM
Re: / at 91%
find / -type d -xdev | xargs du -sk >/file1
sort -k2,2 file1 >sorted1
Wait awhile (30 minutes?)
find / -type d -xdev | xargs du -sk >/file2
sort -k2,2 file2 >sorted2
join -j 2 sorted1 sorted2 >file3
file3 will be formatted as:
directory firstsize secondsize
Sorry for the boo-boo!
Darrell