简体   繁体   中英

httpd service not starting after installation of mod_dav_svn module in RHEL 6

I tried to configure web access to Subversion under Red Hat Enterprise Linux Server release 6.7 (Santiago). I installed httpd and mod_dav_svn using yum. But after installing the mod_dav_svn module, the httpd service is showing errors:

Starting httpd: httpd: Syntax error on line 217 of /etc/httpd/conf/httpd.conf: Syntax error on line 2 of /etc/httpd/conf.d/subversion.conf: Cannot load /etc/httpd/modules/mod_dav_svn.so into server: /etc/httpd/modules/mod_dav_svn.so: undefined symbol: dav_register_provider

Can someone help to resolve the issue?

Looks like another missing library issue. Verify that you have subversion library installed.

svn --version

if not,

sudo yum install subversion

To check further for missing libraries, Check the output of following commands

 ldd  /etc/httpd/modules/mod_dav_svn.so

Hope it helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM