> > The machine on which my svn repository lives was recently
> > upgraded. I didn't have svnserve in a run-on-reboot script,
> > so I started it by hand (log in as "svn", then type "svnserve
> > -d"). But whenever I make any requests of the server (e.g.
> > "svn ls svn://localhost", much less "s
You need to tell svnserve where your repository is on the machine. e.g.
svnserve -d -r /path/to/repo
It's probably trying to serve a repository rooted at /, which is
probably not where yours is.
> -Original Message-
> From: Stephen Bloch [mailto:sbl...@adelphi.edu]
> Sent: 08 April 20
> The machine on which my svn repository lives was recently upgraded.
> I didn't have svnserve in a run-on-reboot script, so I started it
> by hand (log in as "svn", then type "svnserve -d"). But whenever I
> make any requests of the server (e.g. "svn ls svn://localhost",
> much less "svn update")
I think I may have found the problem: I was assuming "svnserve" would use
"./repos" as its root by default. Saying that explicitly with "svnserve -d -r
/home/svn/repos" seems to have fixed things.
Told you it was a beginner question :-)
Stephen Bloch
sbl...@adelphi.edu