You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Greg Morse <Gr...@telus.com> on 2006/09/15 22:17:45 UTC

RE: svnserve on Solaris 8 wont accept connections

Hello:
I am having an issue in connecting to svnserve.
I am running Solaris8, and have installed the latest package and all dependencies from SUNFREEWARE.

I can create repositories etc. And I can access them using the file:/// protocol.
But when I start svnserve and try to access the repository using the svn:// probotocol I get errors.
To begin with I am running with just the default conf file, ie no security to speak of.

I get the same error whether I access svnserve from the same machine, or from a different machine.
 What am I doing wrong? It is not security. There is none at the momment, and anyway when I turned some one, I got different errors.)

Here is some sample dialog:
#------------- at root's session ------------
bash-2.03# /usr/local/bin/svnserve --daemon --root /export/home/svn-repos
bash-2.03# pgrep -fl svnserve
19798 /usr/local/bin/svnserve --daemon --root /export/home/svn-repos

# ----------- at user's session  --------

bash-3.1$ svn list svn://127.0.0.1/export/home/svn-repos/
svn: URL 'svn://127.0.0.1/export/home/svn-repos' non-existent in that revision

bash-3.1$ svn list file:///export/home/svn-repos/
Greg-Valens-Home/
gmorse-PERL/

bash-3.1$ ls -l /export/home/svn-repos/
total 7
-rwxrwx--- 1 root svngroup 229 Sep 12 13:32 README.txt
drwxrwx--- 2 root svngroup 512 Sep 15 08:11 conf
drwxrwx--- 2 root svngroup 512 Sep 12 13:32 dav
drwxrws--- 5 root svngroup 512 Sep 14 15:59 db
-rwxrwx--- 1 root svngroup   2 Sep 12 13:32 format
drwxrwx--- 2 root svngroup 512 Sep 12 13:32 hooks
drwxrwx--- 2 root svngroup 512 Sep 12 13:32 locks

bash-3.1$ groups
staff root adm svngroup

-----------------------------------------------
# Alternately -- alll done from root's session. 
------------------------------------------------
# /usr/local/bin/svnserve --daemon  --listen-host 127.0.0.1 --listen-port 3690  --root /export/home/svn-repos
bash-3.1# svn list svn://127.0.0.1/export/home/svn-repos
svn: URL 'svn://127.0.0.1/export/home/svn-repos' non-existent in that revision

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


Re: svnserve on Solaris 8 wont accept connections

Posted by Erik Huelsmann <eh...@gmail.com>.
> -----------------------------------------------
> # Alternately -- alll done from root's session.
> ------------------------------------------------
> # /usr/local/bin/svnserve --daemon  --listen-host 127.0.0.1 --listen-port 3690  --root /export/home/svn-repos
> bash-3.1# svn list svn://127.0.0.1/export/home/svn-repos
> svn: URL 'svn://127.0.0.1/export/home/svn-repos' non-existent in that revision

Ofcourse not: the --root ... parameter makes the given directory the
root in the url, so, your svn list command should have been:

svn list svn://127.0.0.1/

HTH,

Erik.

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