- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /var/root is 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
12-04-2006 08:24 AM
12-04-2006 08:24 AM
/var/root is full
I'm getting a message saying that /var/root is full on our hpux 11i system & can't figure out how to find out what's filling it. When the system reboots, the console is scrolling a message saying 'mknod: file exists'. I think that this message is what's filling or appending a system or log file somewhere but don't know how to stop it or clear the impacted file.
Any help would be greatly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 10:15 AM
12-04-2006 10:15 AM
Re: /var/root is full
$su -
#cd /var/root
#du -ks *
#cd to the directory with the most kb's in it.
#du -ks *
repeat those 2 steps untill you have found the file filling your file system.
An alternative
# cd /tmp
# ls -aRl /var/root > var-root.txt
# sort -k 5 -n var-root.txt |tail
# more var-root.txt
search for the file name that show up with the tail command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 10:50 AM
12-04-2006 10:50 AM
Re: /var/root is full
I'd start by 'grep'ing for '/var/root' in the startup script directory:
# grep /var/root /sbin/init.d/*
...to see if you can find any scripts that reference this.
'mknod' is used to create special device files and pipe (FIFOs). You could 'grep' for that in the startup files, too.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 03:23 PM
12-04-2006 03:23 PM
Re: /var/root is full
ll -t /sbin/init.d
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 07:07 PM
12-04-2006 07:07 PM
Re: /var/root is full
ll -tr
the most recently amended files/directories will appear at the bottom of the screen. If it's only recently filled, these are probably the ones causing the problem.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2006 01:49 AM
12-05-2006 01:49 AM
Re: /var/root is full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2006 01:51 AM
12-05-2006 01:51 AM