setup SVN on Solaris 10, need some help
807557Jun 9 2007 — edited Jun 11 2007folks,
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 *.* 0 0 49152 0 LISTEN
*.3691 *.* 0 0 49152 0 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