Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache error log

Status
Not open for further replies.

fsqueeen

Programmer
Jul 8, 2002
43
0
0
MY
I found there's a process keep on running in my server, here's the process name I saw

from WHM:
Pid Command
28193 /usr/local/apache/bin/httpd -DSSL

from SSH:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
28193 root 25 0 10864 5208 3140 R 1.0 0.3 34:20.64 httpd
(TIME is accumulated since yesterday)


And, I found the error_log in apache server keep on growing in every second! Anyone can tell me why it's growing like this?

[Mon May 29 19:23:04 2006] [notice] child pid 27845 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27847 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27851 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27853 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27856 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27859 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27860 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27861 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27862 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27865 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27869 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27870 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27873 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27874 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27875 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27876 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27879 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27882 exit signal File size limit exceeded (25)
[Mon May 29 19:23:04 2006] [notice] child pid 27885 exit signal File size limit exceeded (25)
......

I thought there's any log file exceeding 2GB in my server, but seems like it isn't. Current file size:
error_log 83291726
access_log 27844884

Anyone can help with this problem? Thanks in advance!
 
Check file size limit and make sure that the file system is not full.
#ulimit -a



aixnag
IBM Certified Specialist - P-series AIX 5L Administration
IBM Certified Specialist - AIX V4 HACMP
IBM eServer Certified Specialist – p690 Technical Support
IBM Certified Solutions Expert - DB2 UDB V7.1 Database Administration for Unix, Linux, Windows and OS/2
 
So anything wrong with this figure?

core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
pending signals (-i) 1024
max locked memory (kbytes, -l) 32
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
stack size (kbytes, -s) 10240
cpu time (seconds, -t) unlimited
max user processes (-u) 32639
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
 
its because apache is not coded to support largefilesize, and instead it uses the 2GB limit.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top