On Thu, 7 Oct 2010 14:11:39 +0100
Jérôme Etévé <jerome.et...@gmail.com> wrote:
> Well, technically, I'm not sure being a professor or religion
> disqualifies for the title of Mason Novice :)
> 
> To run strace on your apache process, first make sure you've got only
> one serving process by tweaking your apache conf. 

<IfModule prefork.c>
StartServers       1
MaxClients       1
</IfModule>

Two minutes then a seg fault, together with the infinite recursion
possibility, imply something is eating a lot of memory then getting
killed.   Since the server apparently survives, that could be a single
apache processes if you are running it forked not threaded, or it could
be something else.

So here's a suggestion in addition to strace: before you make your
request, fire up "top" in a console.  Press shift-f to select sort
field order and choose 'n', "memory usage".   If this is a dedicated
server, apache should be at the top to begin with -- watch and see if
the mem usage grows rapidly and then the process gets killed by the
kernel.

-- 
MK <halfcountp...@intergate.com>

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
Mason-users mailing list
Mason-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mason-users

Reply via email to