- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- File System 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
06-21-2000 05:26 AM
06-21-2000 05:26 AM
I'm facing a big problem concernig /var/adm/syslog/syslog.log file like:
vmunix: file: table is full
vmunix: /home : file system full.
This message resulted on crashing the server and what I have done was restore the OS trough the Ignite Tape, but what I would like to know is if is there any way to control or to fixed this problem without restoring the entire OS.
Your help will be appreciated.
PS: I'm running HP-UX 10.20
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2000 05:32 AM
06-21-2000 05:32 AM
Solutionyou must check which file or files are
cluttering up your /home.
you can use SAM for that
---> Routine Tasks ----> selective file removal
i once had a massive core-file do that
to the /home filesys, because some user was
messing with a process.
you could also use
find /home -size +2000
to identify large files, but sam is easier.
before you remove files, make sure you identify, what caused them.
handle accordingly, to prevent the problem
in the future.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2000 05:34 AM
06-21-2000 05:34 AM
Re: File System is full
To fix the file table, change the kernel parameter 'nfile' or the macro value maxusers (which changes nfile and others).
As for the full filesystem, monitor the usage (but this shouldn't panic a machine).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2000 05:35 AM
06-21-2000 05:35 AM
Re: File System is full
It is unlikely that /home getting 100% full would crash your system.
The filetable error is probably what you want to handle first. My suggestion is to increase the "nfile" parameter in the kernel, it is the highest number of open files allowed. You can use SAM to do it.
To take care of /home, you will have to either clean it up or expand it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2000 05:41 AM
06-21-2000 05:41 AM
Re: File System is full
"file system full" sounds like you may have some core files or (I've seen this alot) some graphic files is home directories. Do a find a clean out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2000 10:59 AM
06-21-2000 10:59 AM
Re: File System is full
Tommy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2000 07:26 PM
06-21-2000 07:26 PM
Re: File System is full
As mentioned before, this is the nfile parameter in the kernel. Most likely, your system is growing and the default parameters a very low. If you increase nfile, you may eventually get a message: vmunix: proc: table is full which menas that the parameter nproc needs to be doubled.
But rather than waiting parameters to hit the limit, leave these values in formula format (use SAM) then count the maximum number of users on the system, multiply by 2 and set maxusers to that value. Several params get changed at the same time.
vmunix: /home : file system full.
This is the user's home directory and the first thing a sysadmin learns is that users will fill up all the disk space they can access. Turn on quotas to solve the problem. To find the largest abusers:
du -kx /home | sort -rn > /var/tmp/du.home
This file will have the largest directories at the top. (don't look for big files, use du to find big directories first) Then use ll to see what files are there. To sort by size, use:
ll /home/what_ever | sort -rnk5 | more
You may find very large files or maybe hundreds of small files. Quotas will help keep things under control.
Bill Hassell, sysadmin