You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Chonger <jc...@johncheng.dhs.org> on 2001/12/20 18:50:28 UTC

apr_error: #20014 connecting to local server (httpd2)

I had a problem a couple days ago compiling svn with Berkeley DB4.0.
Turns out that I was supposed to be using Berkeley DB 3.3.x, I
installed 3.3.11 and problem solved. Thanks.

I grabbed the latest httpd-2.0 from cvs and compiled it. Then I
recompiled svn against my Apache2 installation, restarted the
server and saw

Apache/2.0.30-dev (Unix) DAV/2 SVN/0.7.0 configured -- resuming normal
operations

I assume this means I managed to install Apache2 with svn
correctly. I created $HOME/svninst/repo and did 'svnadmin create
$HOME/svninst/repo' to create a repository there. I put this in
my httpd.conf to make sure I'll be serving the repository.

LoadModule dav_svn_module     modules/libmod_dav_svn.so
<IfModule dav_svn_module>
<Location /svn/repo>
  DAV svn
  SVNPath /home/jcheng/svninst/repo
</Location>
</IfModule>

Then I tried checking out the repository using svn

$ svn co http://127.0.0.1:11111/svn/repos -d wc

apr_error: #20014, src_err 0 : <Error string not specified yet>
  The OPTIONS response did not include the requested
activity-collection-set.

Note that I used 11111 because I'm running a test-version alongside my
live one.

I tried compiling svn against the apr that came with the latest
httpd-2_0. I also tried running Apache on port 80. But I'm still
getting the same message. I tried a telnet test and I got
a 501:

$ telnet localhost 11111
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
OPTIONS /svn/repost

... ERROR 500 ...

When this happens, an error is not logged in error_log, even though I
have logging set to debug. When I use the svn client, though, I do see
a log entry (OPTIONS) in my access_log. So I'm pretty sure the client
is behaving alright.

127.0.0.1 - - [20/Dec/2001:10:59:57 -0800] "OPTIONS /svn/repos
HTTP/1.1" 200 0

I'm stuck and I don't know what could be the cause of this. There
seems to be no reference to this problem on the mailing list archives
or the net.

Thanks in advance


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: apr_error: #20014 connecting to local server (httpd2)

Posted by Philip Martin <ph...@codematters.co.uk>.
Philip Martin <ph...@codematters.co.uk> writes:

> 
> > LoadModule dav_svn_module     modules/libmod_dav_svn.so
> > <IfModule dav_svn_module>
> > <Location /svn/repo>

repo *not* repos

> >   DAV svn
> >   SVNPath /home/jcheng/svninst/repo
> > </Location>
> > </IfModule>
> > 
> > Then I tried checking out the repository using svn
> > 
> > $ svn co http://127.0.0.1:11111/svn/repos -d wc
                                            ^
repos *not* repo. You can use either, but they must match.

> > 
> > apr_error: #20014, src_err 0 : <Error string not specified yet>
> >   The OPTIONS response did not include the requested
> > activity-collection-set.
> 
> I get this error when the repository does not exist at the specified
> location. You should see the following in a newly created repository
> 
> $ ls /home/jcheng/svninst/repo
> README  conf  dav  db  hooks  locks
> 
> If 'svn --version' reports that the ra_local module is available then
> you can check that the repository is OK using
> 
> $ svn co file:///home/jcheng/svninst/repo -d wc

-- 
Philip

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: apr_error: #20014 connecting to local server (httpd2)

Posted by Philip Martin <ph...@codematters.co.uk>.
"Chonger" <jc...@johncheng.dhs.org> writes:

> LoadModule dav_svn_module     modules/libmod_dav_svn.so
> <IfModule dav_svn_module>
> <Location /svn/repo>
>   DAV svn
>   SVNPath /home/jcheng/svninst/repo
> </Location>
> </IfModule>
> 
> Then I tried checking out the repository using svn
> 
> $ svn co http://127.0.0.1:11111/svn/repos -d wc
> 
> apr_error: #20014, src_err 0 : <Error string not specified yet>
>   The OPTIONS response did not include the requested
> activity-collection-set.

I get this error when the repository does not exist at the specified
location. You should see the following in a newly created repository

$ ls /home/jcheng/svninst/repo
README  conf  dav  db  hooks  locks

If 'svn --version' reports that the ra_local module is available then
you can check that the repository is OK using

$ svn co file:///home/jcheng/svninst/repo -d wc

-- 
Philip

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org