httpd count exceeded threshold limit


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers httpd count exceeded threshold limit
# 1  
Old 04-02-2012
httpd count exceeded threshold limit

Hello Everyone,

I am new to this forum and also unix/linux. Our application today threw an alert whcih read as
"The users active count on host has crossed the threshold limit of 50
and is standing at 65."
This was although cleared when I restarted tomcat. But I am not sure why this count exceeded.
I would be very thankful if you would let me know the reasons of how and why the count can increase.
Also I didn't find anything in logs. Please let me know if you need any information from my end.

Thanks much.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Postfix keeps returning "Command time limit exceeded" message

We are having issues with our Postfix. The POP and IMAP services randomly stops working an sent e-mails return a "Command time limit exceeded". We've found out that running these command fix the problem: service cyrus-imapd stop rm /var/lib/imap/tls_sessions.db* rm... (2 Replies)
Discussion started by: GustavoAlvarado
2 Replies

2. Shell Programming and Scripting

Running script automatically when threshold limit met in one of the field in oracle database

Hi Guys, Need you help in one point! I am working on one shell script which takes following steps : 1. Taking one query result from oracle database 2. Exporting that result to Xls file 3. Mailing that file to my own mail ID Now, I want to give a threshold limit to one of the column... (0 Replies)
Discussion started by: Agupte
0 Replies

3. Shell Programming and Scripting

Problem with awk awk: program limit exceeded: sprintf buffer size=1020

Hi I have many problems with a script. I have a script that formats a text file but always prints the same error when i try to execute it The code is that: { if (NF==17){ print $0 }else{ fields=NF; all=$0; while... (2 Replies)
Discussion started by: fate
2 Replies

4. Shell Programming and Scripting

Check space of directories and send email if it has reached threshold limit

Hi, I need help in writing unix script for checking space of some directories on the system and also send an email when it reaches the threshold limit. I have written the followng code; #!/bin/ksh ADMIN="me@somewhere.com" # set alert level 80% is default THRESHOLD=80 df | grep -E... (5 Replies)
Discussion started by: jmathew99
5 Replies

5. Shell Programming and Scripting

Splitting file when file count exceeded

hello everybody, need help . i want to write a shell script which will first check the count of the file , if file count is greater than 15000 then script will split the file in 15000 each.with count of each splited file included in it. if file size is less than 15000 then... (3 Replies)
Discussion started by: abhigrkist
3 Replies

6. UNIX for Dummies Questions & Answers

File size limit exceeded... SCO ulimit?

Hello - O/S is UnixWare 7.1.4 My prefered method of copying files between servers is 'rcp', which does not recognize symbolic links; therefore, files are duplicated many times over. To avoid this duplication, I would like to use 'tar' and/or 'cpio' and pipe them through 'rcp', but... (1 Reply)
Discussion started by: rm -r *
1 Replies

7. Solaris

/tmp: File system full, swap space limit exceeded

Can you help. My server sunning solaris 9 on x86 platform pretty much hung for a few hours... I could not use telnet or ssh to the box - it kept refusing connection. A few hours later - I was able to log in again. The server has not rebooted but here are the first errors in the messages log... (5 Replies)
Discussion started by: frustrated1
5 Replies

8. UNIX for Dummies Questions & Answers

Error, Login Limit Exceeded by 1 user

Would appreciate some help, system was displaying an error regarding the kernal when a "sar" was run, after a reboot we get "WARNING user login limit exceeded by 1 user". We have plenty of licences. any ideas? (1 Reply)
Discussion started by: nchrocc
1 Replies

9. HP-UX

Count Exceeded Error on HP-UNIX

Sirs/Madame, On my HP-Unix, I came across an error GRECV-count exceeded and as a result of this, systems got hanged and server came down. Graceful shutdown too was not allowed. Kindly, Can anybody help me out in killing this issue Bhavani.R (0 Replies)
Discussion started by: bhavani2006
0 Replies

10. Programming

File size limit exceeded

When i run my C program which dynamically creates the output file, the program stops after sometime and gives the error "File size limit exceeded" even though my working directory has space.Can anyone plz help me out. (13 Replies)
Discussion started by: drshah
13 Replies
Login or Register to Ask a Question
tunefs(8)						      System Manager's Manual							 tunefs(8)

Name
       tunefs - tune up an existing file system

Syntax
       /etc/tunefs [ options ]

Description
       The command is designed to change the dynamic parameters of a file system which affect the layout policies.  The parameters which are to be
       changed are indicated by the options listed in the following section.

Options
       -a maxcontig
		 This specifies the maximum number of contiguous blocks that will be laid out before forcing a rotational delay  (see  -d  below).
		 The  default  value is one, since most device drivers require an interrupt per disk transfer.	Device drivers that can chain sev-
		 eral buffers together in a single transfer should set this to the maximum chain length.

       -d rotdelay
		 This specifies the expected time (in milliseconds) to service a transfer completion interrupt and initiate a new transfer on  the
		 same disk.  It is used to decide how much rotational spacing to place between successive blocks in a file.

       -e maxbpg This  indicates  the  maximum	number of blocks any single file can allocate out of a cylinder group before it is forced to begin
		 allocating blocks from another cylinder group.  Typically this value is set to about one quarter of the total blocks in a  cylin-
		 der  group.   The  intent  is	to prevent any single file from using up all the blocks in a single cylinder group, thus degrading
		 access times for all files subsequently allocated in that cylinder group.  The effect of this limit is to cause big files  to	do
		 long  seeks  more  frequently	than if they were allowed to allocate all the blocks in a cylinder group before seeking elsewhere.
		 For file systems with exclusively large files, this parameter should be set higher.

       -m minfree
		 This value specifies the percentage of space held back from normal users; the minimum free space threshold.   The  default  value
		 used  is  10%.   This	value  can be set to zero, however up to a factor of three in throughput will be lost over the performance
		 obtained at a 10% threshold.  Note that if the value is raised above the current usage level, users will be  unable  to  allocate
		 files until enough files have been deleted to get under the higher threshold.

       -c	 Clean	byte  timeout  factor.	The metrics used to determine if a clean byte associated with a file system should be invalidated,
		 decrement a timeout factor when crossed.  When the timeout factor reaches zero, the clean byte is invalidated and will  automati-
		 cally	check  the  file  system.  The timeout factor can be increased to a value between 0 and 255. A value of zero will cause to
		 check the file system on every reboot.

Restrictions
       This program should work on mounted and active file systems.  Because the super-block is not kept in the buffer	cache,	the  program  will
       only take effect if it is run on dismounted file systems.  If run on the root file system, the system must be rebooted.

See Also
       fs(5), fsck(8), mkfs(8), newfs(8)
       ``A Fast File System for UNIX,'' ULTRIX Supplementary Documents, Volume 3: System Manager

																	 tunefs(8)