Results 1 to 10 of 16
I have suse10 64 bit installed. I am setting up a svn server on it. After installation and adding the modules ,while reloading the apache2 it's throwing the error as:
...
- 11-19-2010 #1Just Joined!
- Join Date
- Jan 2009
- Posts
- 63
apache2 reload error
I have suse10 64 bit installed. I am setting up a svn server on it. After installation and adding the modules ,while reloading the apache2 it's throwing the error as:
HTML Code:httpd2-prefork: Syntax error on line 113 of /etc/apache2/httpd.conf: Syntax error on line 31 of /etc/apache2/sysconfig.d/loadmodule.conf: Cannot load /usr/lib64/apache2/mod_dav_svn.so into server: /usr/lib64/libsvn_subr-1.so.0: undefined symbol: apr_memcache_add_server
- 11-19-2010 #2
Seems,
/usr/lib64/libsvn_subr-1.so.0 was compiled with memcache support.
Usually, depended packages are pulled in automatically by the package manager.
Did you force install or have you used non-standard packages?
What you can try is to install memcache packages.You must always face the curtain with a bow.
- 11-19-2010 #3Just Joined!
- Join Date
- Jan 2009
- Posts
- 63
- 11-19-2010 #4
I suspect,
/usr/lib64/libsvn_subr-1.so.0
is a left over from the manual compilation process.
Please try to verify that:
Check if the file belongs to a package
You will see, which file it links to.Code:ls -la /usr/lib64/libsvn_subr-1.so.0
then
This will provide you with a package name.Code:rpm -qf <FILENAME>
*If* it is owned by a package, then the package version could still be overwritten by the manual "make install".
Will make it obvious.Code:rpm --verify <PACKAGENAME>
You must always face the curtain with a bow.
- 11-19-2010 #5Just Joined!
- Join Date
- Jan 2009
- Posts
- 63
Its from the pkg subversion-1.6.13-11.1
but the source was 1.6.13 also
- 11-19-2010 #6
My guess is, that you compiled subversion with memcache support.
And that the leftover of that compile now "polutes" the systemYou must always face the curtain with a bow.
- 11-19-2010 #7Just Joined!
- Join Date
- Jan 2009
- Posts
- 63
I compiled with following line:
./configure --enable-maintainer-mode --disable-shared && make && make install
- 11-19-2010 #8Just Joined!
- Join Date
- Jan 2009
- Posts
- 63
- 11-20-2010 #9
Install from the repositories do not compile anything unless you understand what you are doing.
- 11-20-2010 #10Just Joined!
- Join Date
- Jan 2009
- Posts
- 63


Reply With Quote
