how to lessen the threshold of diskusgae %


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users how to lessen the threshold of diskusgae %
# 1  
Old 01-19-2009
how to lessen the threshold of diskusgae %

Hi experts,

I found-

Code:
$ tail -f /var/adm/messages

....
....
Jan 17 05:16:31 server01b last message repeated 6 times
Jan 17 05:17:05 server01c ufs: [ID 845546 kern.notice] NOTICE: alloc: /var/fileserver:file system full


but I checked with df -k and found /var/fileserver is only 49% is used. It means somewhere in unix threshold defined as 49%.

Could you please tell me where i can lessen the threshold. and Avoid the message?

br//purple
# 2  
Old 01-19-2009
Did you check if there are enough free inodes?
# 3  
Old 01-19-2009
Quote:
Originally Posted by pludi
Did you check if there are enough free inodes?
How to check the inodes?
# 4  
Old 01-19-2009
Usually df -i <fs>
Linux:
Code:
Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/sda1            9289728  272998 9016730    3% /

HP-UX:
Code:
/                      (/dev/vg00/lvol1       ) :    64992 total i-nodes
                                                     50069 free i-nodes
                                                     14923 used i-nodes
                                                        22 % i-nodes used

# 5  
Old 01-19-2009
I am using Solaris 9. And it seems df -i is not in solaris.

bash-2.05$ df -i /var/fileserver
df: unknown option: i
Usage: df [-F FSType] [-abeghklntVv] [-o FSType-specific_options] [directory | block_device | resource]
# 6  
Old 01-19-2009
Try df -e, which should report the number of free files
# 7  
Old 01-19-2009
It is giving below output-

sogadm] ircemaprod:/home/sogadm> df -e /var/fileserver
Filesystem ifree
/dev/md/dsk/d140 3740464


can i see the output like below where total inode, used inode also be mentioned-

Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sda1 9289728 272998 9016730 3% /
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Solaris

How the free memory threshold?

If I understand your question correctly, you are asking for an explanation of Solaris memory manager. You'd better ask Oracle that question because you are talking about Solaris kernel internals. The operating system kernel has no reason to kick a process's memory set out of real memory until... (4 Replies)
Discussion started by: hicksd8
4 Replies

2. AIX

Determine threshold for CPU

I'm writing an application that should display whether a system is running “fine” (normal activity) or if it has reached a critical level and thus indicate through a graphical interface using a green-yellow-red color scheme. The server machines in question are running AIX (but it shouldn't differ... (4 Replies)
Discussion started by: ttl_aix
4 Replies

3. UNIX for Advanced & Expert Users

Threshold for open connections

Hey guys, We've been having issues on one of our CentOS 6 servers and one of the java programs that runs on it. As the software hasn't caused issues in the past, I'm wondering if its a problem with the CentOS server. Basically, the software drops it's tcp connection and won't reconnect,... (5 Replies)
Discussion started by: jimbob01
5 Replies

4. UNIX for Dummies Questions & Answers

Threshold for swap memory

hi guys the monitoring team is using a tool for monitoring linux boxes and they set an alarm for swap memory to 10%(critical) I really has no idea when swap memory usage is high.... Can someone recommend me a threshold for this? when is warning or critical and this parameters can affect... (3 Replies)
Discussion started by: karlochacon
3 Replies

5. Solaris

Rootvol above threshold

Hi there, Root filesystem is above threshold, I have search and cleared unwanted files which are filling up space. But the root fs is still above threshold. I don't know about veritas volume management. Can anyone show me how to solve this. Du shows /proc is occupying a lot of space. Most of the... (2 Replies)
Discussion started by: sundar63
2 Replies

6. UNIX for Dummies Questions & Answers

threshold

Hi, I have a table with 14 columns. How can I filter the columns 2-14, so that I get only those rows back in which the data values are >= 6 in 5 or more columns. :confused: E.g. A 6 6 3 6 7 8 B 1 2 3 4 5 5 C 2 2 2 6 7 8 Here I should only get back the row A. I would like to work from... (5 Replies)
Discussion started by: danieladna
5 Replies

7. UNIX for Advanced & Expert Users

Quota threshold

Hi, I am trying to make a script in which the user is notified once the disk space of the environment increases a particular threshold. I have made a script for it but I am facing an error while executing it. Could any one here guide me further?? Script #!/bin/sh warninglimit=350000... (22 Replies)
Discussion started by: Taranjeet Singh
22 Replies

8. Shell Programming and Scripting

apache threshold

Hi folks, how can i check apache threshold values via shell scripting and what factors need to check via shell scripting process or number of users or what. pls do advice me. Thanks, Bash (9 Replies)
Discussion started by: learnbash
9 Replies
Login or Register to Ask a Question