[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: No connection

From: Helge Kruse <Helge.Kruse-nospam_at_gmx.net>
Date: Sun, 15 Mar 2009 18:57:49 +0100

yaip.net wrote:
> Hi,
>
>
>
> I do a right-click on the folder and do repo-browser. I then type in
> svn://[my-machine-name]/. I get “No connections could be made because
> the target actively refused it.”
>
Sounds like the svnserve is not running on you machine.
Open a command prompt and type "netstat -a -n". If svnserve is running,
you should get a line like this:
   TCP 0.0.0.0:3690 0.0.0.0:0 LISTENING

Check, that the SubVersion service is installed with the command
     sc query svnserver
If it is installed this command gives an response like this:

|SERVICE_NAME: svnserve
| TYPE : 10 WIN32_OWN_PROCESS
| STATE : 4 RUNNING
| |(STOPPABLE,NOT_PAUSABLE,IGNORES_SHUTDOWN)
| WIN32_EXIT_CODE : 0 (0x0)
| SERVICE_EXIT_CODE : 0 (0x0)
| CHECKPOINT : 0x0
| WAIT_HINT : 0x0

If the sevice svnserve is not found, reinstall subversion (server).

If the state is found but not 4 (RUNNING), you can start it with the command
     sc start svnserve
You should now be able to access it with the repo-browser. To start it
at every system start you should enter the command
     sc config svnserve start=auto

Regards,
Helge

------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=1328008

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2009-03-15 19:17:50 CET

This is an archived mail posted to the TortoiseSVN Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.