Hi i have set up svn repository and i was to access it over internet. i have done in svn dir...

svnserve -d -r path

but it says

[~/svnrepo]# svnserve -d -r /home2/alohamor/svnrepo/
svnserve: Can't bind server socket: Address already in use

Pls help what to do

link|improve this question
feedback

1 Answer

This means another program (maybe another instance of svnserve) is already using the svn port. Check netstat -a for applications with port 3690 open

link|improve this answer
i have run this command i can only see tcp thr no svn... – user453506 Sep 28 '10 at 18:29
@user453506: the app listening on TCP is your problem. There are only two kinds of socket, TCP and UPD. Svnserve uses TCP as well. – Michael Borgwardt Sep 28 '10 at 18:40
i have run the command again .. it has run but without any message and still if i ma trying to access it .. its timing out – user453506 Sep 28 '10 at 19:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.