0

I installed httpd-devel through yum and after restarting httpd got this:

httpd: Syntax error on line 61 of /etc/httpd/conf/httpd.conf: Cannot load /usr/local/apache/modules/mod_dav_svn.so into server: /usr/local/lib/libsvn_subr-1.so.0: undefined symbol: apr_memcache_add_server

This is a legacy Linux system I got in - Fedora 9, pretty old.

Any ideas on how to fix this?

HopelessN00b
  • 53,795
  • 33
  • 135
  • 209
DmitrySemenov
  • 835
  • 2
  • 15
  • 27

1 Answers1

1

The module that's complaining is mod_dav_svn, which is used to access Subversion repositories. If you're not going to use your webserver to do that, just comment out the line where mod_dav_svn is loaded.

If you do want to use it, try installing a newer version of mod_dav_svn.

Jenny D
  • 27,780
  • 21
  • 75
  • 114