setup SVN on Solaris 10, need some help

folks,

I'm trying to setup a SVN server on Solaris 10 Sparc. I got everything installed and the SVN server up.

Code:

# svcs -a | grep subversion

online 18:31:25 svc:/network/subversion:default

Port was set to 3691 using: svnserve --daemon --listen-port 3691 --root /export/home0/subversion and it seems svnserve is listening to that port:

Code:

# netstat -a|grep 3691

*.3691*.*00 491520 LISTEN

*.3691*.*00 491520 LISTEN

Then I created a test repository using:

Code:

#svnadmin create --fs-type fsfs /export/home0/subversion/svnrepos/project

# svnlook date /export/home0/subversion/svnrepos/project

2007-06-09 18:07:11 -0400 (Sat, 09 Jun 2007)

Everything looks fine till here. But when I try to look at the repository from another host, I got the following error message:

Code:

bash-3.00$ svn ls svn://192.168.0.2:3691/export/home0/subversion/svnrepos/project

svn: No repository found in 'svn://192.168.0.2:3691/export/home0/subversion/svnrepos/project'

I also tried without specifying the port number 3691 and got the same error. The ip address is correct since I can ssh to it. Any help or suggestions would be appreciated!

-X

[1257 byte] By [xhkonga] at [2007-11-27 6:56:31]
# 1

> was set to 3691 using: svnserve --daemon

> --listen-port 3691 --root /export/home0/subversion

> and it seems svnserve is listening to that port:

[snip...]

> bash-3.00$ svn ls

> svn://192.168.0.2:3691/export/home0/subversion/svnrep

> s/project

> svn: No repository found in

> 'svn://192.168.0.2:3691/export/home0/subversion/svnrep

> os/project'

You've set the root to /export/home0/subversion.So that portion won't be seen by the client.

--

Darren

Darren_Dunhama at 2007-7-12 18:33:31 > top of Java-index,Solaris Operating System,Solaris 10 Features...