Hello,

Using 
Genshi-0.6, --easy_install
mod_wsgi-3.3,  --./configure make install
mod_python-3.3.1, --./configure make install
pysqlite-2.6.3, --./configure make install
Trac-0.12.2, --easy_install
httpd-2.2.3-45 --yum

On CentOS release 5.6 (Final)

I am getting the following errors from apache logs /var/log/httpd/error_log
[Sun Jul 03 20:03:47 2011] [notice] SELinux policy enabled; httpd running as 
context user_u:system_r:httpd_t:s0
[Sun Jul 03 20:03:47 2011] [notice] suEXEC mechanism enabled (wrapper: 
/usr/sbin/suexec)
[Sun Jul 03 20:03:47 2011] [notice] Digest: generating secret for digest 
authentication ...
[Sun Jul 03 20:03:47 2011] [notice] Digest: done
[Sun Jul 03 20:03:48 2011] [notice] mod_python: Creating 8 session mutexes 
based on 256 max processes and 0 max threads.
[Sun Jul 03 20:03:48 2011] [notice] mod_python: using mutex_directory /tmp 
[Sun Jul 03 20:03:48 2011] [notice] Apache/2.2.3 (CentOS) configured -- 
resuming normal operations
[Sun Jul 03 20:04:15 2011] [notice] child pid 5845 exit signal Segmentation 
fault (11)
[Sun Jul 03 20:04:22 2011] [notice] child pid 5847 exit signal Segmentation 
fault (11)
[Sun Jul 03 20:04:23 2011] [notice] child pid 5849 exit signal Segmentation 
fault (11)

What could be causing this? The contents of my trac.wsgi script is:
#!/usr/bin/python26

import os
import site
site.addsitedir('/usr/lib/python2.4/site-packages')

os.environ['PYTHON_EGG_CACHE'] = '/usr/local/trac/mysite/eggs'

import trac.web.main
def application(environ, start_response):
  environ['trac.env_path'] = '/var/www/trac-scorch3d' 
  return trac.web.main.dispatch_request(environ, start_response)

I posted earlier about an issue with using mod_python, though since it is 
deprecated I thought I should try wsgi, and now have encountered this error.

Any help is greatly appreciated.

Thank you,
Matthew Hoggan


-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/trac-users/-/O7Vr5-XhntEJ.
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/trac-users?hl=en.

Reply via email to