- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: system administration
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-03-2001 11:12 AM
09-03-2001 11:12 AM
I?ve had a problem with a server 9000.It just stops.Consulting syslog.log I found the message
vmunix:file:table is full
what happened?
thank?s
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 11:22 AM
09-03-2001 11:22 AM
SolutionThere is a kernel parameter called nfile that is overflowing.
Increase this parameter by 30% of what you have now. HP also suggests to increase nflocks parameter also when increasing nfile.
You can use SAM to accomplish this task. If you want to do it manually,
#vi /stand/system
(modify nfile & nflock value to currentvalue+30%)
save the file
#mk_kernel -o /stand/vmunix
#shutdown -r y 0
After increasing it, keep a track of it's value by doing a sar -v 2 20 at regular intervals.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 11:27 AM
09-03-2001 11:27 AM
Re: system administration
http://hpux.asknet.de
(There are US sites UT and WI also. I could never be able to get into these sites so far)
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 12:05 PM
09-03-2001 12:05 PM
Re: system administration
Looks like you need to increase the kernel parameter nfile which determines the maximum number of files that can be open simultaneously which when full means no more files can be open.
To see the current usage you can also use glance and look at the system parameters usage or you can use sar -v.
You can be liberal with this parameter and double its present value.
To get more information about the kernel paratmer nfile, check the link
http://docs.hp.com/hpux/onlinedocs/os/11i/kcparams/KCparam.Nfile.html
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2001 03:08 PM
09-03-2001 03:08 PM
Re: system administration
As already pinpointed by the others your 'nfile' kernel parameter is too small.
I suggest you use 'SAM' to increase your
kernel parameters if you not familiar in
doing it manually as already suggested.
Be aware however that the manual method
proposed with not work on HP-UX 10.20 or
11.00.
If your kernel has formulas set up SAM will
assist you in changes for the dependancies.
If you wish to change manually for HP-UX 10.20
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# vi system
(modify the necessary values and save the file)
# mk_kernel -s system
# cd /stand
# mv vmunix vmunix.prev
# mv /stand/build/vmunix_test /stand/vmunix
# shutdown -r y 0
For HP-UX 11 follow this
# cd /stand/build
# /usr/lbin/sysadm/system_prep -s system
# vi system
(modify the necessary values and save the file)
# mk_kernel -s system
# kmupdate
# shutdown -r y 0
HTH
-Michael