Make sure that your version of modwsgi is compiled against the correct python version (the distribution modwsgi package will be compiled against Python 2.6.)
Check through: https://code.google.com/p/modwsgi/wiki/FrequentlyAskedQuestions#Apache_Process_Crashes The pid changes every time because a new child daemon process started (with a new pid) after the segfault. I'd try to first get it running first with a minimal wsgi app, as in: http://modwsgi.readthedocs.org/en/latest/configuration-guides/running-a-basic-application.html If that fails then you'll get better support in the modwsgi google group. Laurence On Sunday, 6 April 2014 15:26:26 UTC-7, Aniruddha Gaikwad wrote: > > Hi, > > I deployed my pyramid application on apache. Here is my configuration > > > WSGIApplicationGroup %{GLOBAL} > WSGIProcessGroup %{GLOBAL} > # Let application handle authorization > WSGIPassAuthorization On > WSGIDaemonProcess pyramid user=apache group=apache threads=25 > deadlock-timeout=300 python-path=/usr/local/lib/python2.7/site-packages > WSGIScriptAlias / /home/myapp/appname/app.py > Alias /favicon.ico /home/myapp/appname/favicon.ico > <Directory /home/myapp/appname> > Order allow,deny > Allow from all > Options -MultiViews > </Directory> > > > Randomly I am getting error "child pid 19689 exit signal Segmentation > fault (11)" - pid is changing everytime. > > OS : CentOS 6 > Python : 2.7 (installed along-with default system python version 2.6) > Apache : 2.2 > > Whats wrong with my configuration? > > > Thanks > Aniruddha > -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
