- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - check ninode and nfile by command
 
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
 
10-22-2000 10:19 PM
10-22-2000 10:19 PM
			
				
					
						
							check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
Thank you.
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-22-2000 10:22 PM
10-22-2000 10:22 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
sysdef | grep -e ninode -e nfile
federico
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-22-2000 10:27 PM
10-22-2000 10:27 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
echo "ninode/D"|adb -k /stand/vmunix /dev/kmem
echo "nfile/D"|adb -k /stand/vmunix /dev/kmem
regards,
federico
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-22-2000 11:19 PM
10-22-2000 11:19 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
with sar -v 5 5 you will see :
number inodes / configured inodes
number opened file / number of files
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-23-2000 12:12 AM
10-23-2000 12:12 AM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
1. Create a sar daily data directory
mkdir /var/adm/sa/sa`date +%d`
2. run the sar command
sar -v 1
refer to sar man page for additional information
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-23-2000 12:56 AM
10-23-2000 12:56 AM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-23-2000 01:11 AM
10-23-2000 01:11 AM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
Glance's table option (toggled with 't') will show this.
...JRF...
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-23-2000 06:29 AM
10-23-2000 06:29 AM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-24-2000 12:23 PM
10-24-2000 12:23 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
I do not agree with Alan, "ninode" has nothing to about how many inodes may
exist on a file system. It is just a cache (not a table, like "nfile") for used inodes.
Hence it is not possible to guess/check, if it is "full" - even if all "slots" in that
cache are used, usually some are just occupied by already closed inodes, making
access to them faster - if they are used again. Use the mentioned "sar" option to
test for overflows! And for the "nfile" - that is a table, "sar" is correct about it, but
if you are about to experience trouble you could "reserve" some entries in there
for super-user processes, by increasing the kernel parameter "file_pad".
HTH,
Wodisch
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-24-2000 12:23 PM
10-24-2000 12:23 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
I do not agree with Alan, "ninode" has nothing to about how many inodes may
exist on a file system. It is just a cache (not a table, like "nfile") for used inodes.
Hence it is not possible to guess/check, if it is "full" - even if all "slots" in that
cache are used, usually some are just occupied by already closed inodes, making
access to them faster - if they are used again. Use the mentioned "sar" option to
test for overflows! And for the "nfile" - that is a table, "sar" is correct about it, but
if you are about to experience trouble you could "reserve" some entries in there
for super-user processes, by increasing the kernel parameter "file_pad".
HTH,
Wodisch
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-24-2000 12:24 PM
10-24-2000 12:24 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
I do not agree with Alan, "ninode" has nothing to about how many inodes may
exist on a file system. It is just a cache (not a table, like "nfile") for used inodes.
Hence it is not possible to guess/check, if it is "full" - even if all "slots" in that
cache are used, usually some are just occupied by already closed inodes, making
access to them faster - if they are used again. Use the mentioned "sar" option to
test for overflows! And for the "nfile" - that is a table, "sar" is correct about it, but
if you are about to experience trouble you could "reserve" some entries in there
for super-user processes, by increasing the kernel parameter "file_pad".
HTH,
Wodisch
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-24-2000 12:24 PM
10-24-2000 12:24 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
I do not agree with Alan, "ninode" has nothing to about how many inodes may
exist on a file system. It is just a cache (not a table, like "nfile") for used inodes.
Hence it is not possible to guess/check, if it is "full" - even if all "slots" in that
cache are used, usually some are just occupied by already closed inodes, making
access to them faster - if they are used again. Use the mentioned "sar" option to
test for overflows! And for the "nfile" - that is a table, "sar" is correct about it, but
if you are about to experience trouble you could "reserve" some entries in there
for super-user processes, by increasing the kernel parameter "file_pad".
HTH,
Wodisch
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-24-2000 01:31 PM
10-24-2000 01:31 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
I was saying that the ninode results reported by sar are not a meaningful measure of any limit on a vxfs filesystem.
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
10-24-2000 01:33 PM
10-24-2000 01:33 PM
			
				
					
						
							Re: check ninode and nfile by command
						
					
					
				
			
		
	
			
	
	
	
	
	
I was saying that the ninode results reported by sar are not a meaningful measure of any limit on a vxfs filesystem.