Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
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: ...
  1. #1
    Just 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

  2. #2
    Linux Guru Irithori's Avatar
    Join Date
    May 2009
    Location
    Munich
    Posts
    2,100
    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.

  3. #3
    Just Joined!
    Join Date
    Jan 2009
    Posts
    63
    Quote Originally Posted by Irithori View Post
    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.
    I installed
    subversion-server-1.6.13-11.1
    subversion-1.6.13-11.1

    and also tried once from subversion source with GNU standard compilation.

  4. #4
    Linux Guru Irithori's Avatar
    Join Date
    May 2009
    Location
    Munich
    Posts
    2,100
    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
    Code:
    ls -la /usr/lib64/libsvn_subr-1.so.0
    You will see, which file it links to.
    then
    Code:
    rpm -qf <FILENAME>
    This will provide you with a package name.

    *If* it is owned by a package, then the package version could still be overwritten by the manual "make install".
    Code:
    rpm --verify <PACKAGENAME>
    Will make it obvious.
    You must always face the curtain with a bow.

  5. #5
    Just 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

  6. #6
    Linux Guru Irithori's Avatar
    Join Date
    May 2009
    Location
    Munich
    Posts
    2,100
    My guess is, that you compiled subversion with memcache support.
    And that the leftover of that compile now "polutes" the system
    You must always face the curtain with a bow.

  7. #7
    Just Joined!
    Join Date
    Jan 2009
    Posts
    63
    I compiled with following line:

    ./configure --enable-maintainer-mode --disable-shared && make && make install

  8. #8
    Just Joined!
    Join Date
    Jan 2009
    Posts
    63
    Quote Originally Posted by Irithori View Post
    My guess is, that you compiled subversion with memcache support.
    And that the leftover of that compile now "polutes" the system
    And how can I save my system from this pollution ?

  9. #9
    Linux Guru gogalthorp's Avatar
    Join Date
    Oct 2006
    Location
    West (by God) Virginia
    Posts
    3,105
    Install from the repositories do not compile anything unless you understand what you are doing.

  10. #10
    Just Joined!
    Join Date
    Jan 2009
    Posts
    63
    Quote Originally Posted by gogalthorp View Post
    Install from the repositories do not compile anything unless you understand what you are doing.
    Yes, thats for the future but now what will I do ?

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...