Re: Trying to setup new current
"Mindaugas Riauba" <[email protected]>
| Newsgroups | gmane.network.up2date.current.devel |
|---|---|
| Message-ID | <041d01c27509$e5d5e170$f20214ac@B027543> |
> Something else is wrong.
>
> Is that the redhat apache? mod_python?
Apache is from http://rpms.arvin.dk. mod_python from RedHat 7.3.
I also tried mod_python from www.modpython.org
> The only core dumps you can get on the server are if something is really
> wrong, which current can't do by itself.
I've tried to install current 1.0.5 from RPM. Everything worked.
> You've got something else at play here.
Maybe. But where to look at? ltrace and strace of httpd process
does not reveal anything usefull for me. I could send them to you
if they are of any value :).
And at the end is my current.httpd.conf. Maybe it is flawed somehow?
Mindaugas
LogLevel debug
Alias /XMLRPC/$RHN /usr/local/current/var/www
<Directory /usr/local/current/var/www>
# Make certain this is set - current won't work without it
Options FollowSymLinks
</Directory>
<Location ~ "/XMLRPC$">
PythonPath "sys.path + ['/usr/share/current']"
SetHandler python-program
PythonHandler current_apache
</Location>
<Location /XMLRPC/$RHN>
PythonPath "sys.path + ['/usr/share/current']"
PythonHandlerModule current_apache
</Location>
## END OF CURRENT ##