thanks for the reply nick! :)
anyways I've tried to run httpd under gdb and i came up with this
gdb /usr/sbin/httpd
(gdb) run -t
Starting program: /usr/sbin/httpd -t
Syntax OK
[New process 9600]
Program received signal SIGSEGV, Segmentation fault.
_thread_kern_lock (which=-2067247604)
at /usr/src/lib/libpthread/uthread/uthread_kern.c:960
960 {
I'll try lighttpd and FastCGI
thanks,
ed
On 2/26/06, Nick Guenther <[EMAIL PROTECTED]> wrote:
>
> Debugging the core dump. I don't actually know how to do this myself,
> but I think gdb(1) and kill -s ABRT ... will help you. Just being able
> to see the functions being called will give you hints to where to
> look.
>
> Also, don't use mod_python. Set up all your scripts to be executable
> (chmod +x) and make sure their first line reads
> "#!/usr/sbin/python/python" or something, then just use CGI; better
> yet, get lighttpd and FastCGI. It's very likely that mod_python simply
> won't work with OpenBSD's apache, since sooo many changes have been
> made to it.
>
> -Kousu
>
> On 2/26/06, edgar mortiz <[EMAIL PROTECTED]> wrote:
> > I'm trying to run mod_python 2.7.11 on OpenBSD's implementation of
> apache (
> > 1.3) without any luck. The build went good and all.
> >
> > ./configure --with-apxs=/usr/sbin/apxs
> >
> > make
> > su
> > make install
> >
> > the module would be installed on /usr/lib/apache/modules/mod_python.so
> >
> > as soon as i put in the
> >
> > LoadModule mod_python /usr/lib/apache/modules/mod_python.so (on
> httpd.conf)
> >
> > and started apache it would say that i need to run configtest
> >
> > so by doing a apachectl configtest i get this:
> >
> > # apachectl configtest
> > Syntax OK
> > Segmentation fault (core dumped)
> >
> >
> > any help would be appreciated.
> >
> > thanks in advance,
> > ed