I am trying to setup mod_wsgi + Pylons on my deployment server (a
CentOS 5.2 machine), but I get this error message in the apache log
files
[Tue Feb 24 11:24:32 2009] [notice] child pid 12226 exit signal
Segmentation fault (11)
a standard wsgi test programs works fine.
The myapp.wsgi script is:
import os, sys
eggcache = '/var/www/vhosts/eggcache'
sys.path.append('/home/ruben/myapp')
os.environ['PYTHON_EGG_CACHE'] = eggcache
from paste.deploy import loadapp
application = loadapp('config:/home/ruben/myapp/development.ini')
The apache process has write access in the eggcache directory
If set debug = false in the development .ini
The setup works perfectly on my development machine
Any help how to debug
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---