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

Re: Subversion and Tortoise Stopped Working

From: Purple Streak <mrpurplestreak_at_googlemail.com>
Date: Wed, 29 Jul 2009 09:34:43 +0100

> On Jul 29, 2009, at 02:57, Dan B wrote:
>>
>> sc create svn binpath= "\"c:\program files\subversion\bin
>> \svnserve.exe\" --service -rc:\svnrepos" displayname= "Subversion
>> Server" depend= Tcpip start= auto
>>
>> and sc start svn
>>

You're trying to use \" to escape the " which won't work on windows.
You can just put the whole command line inside "".

Howeverr first check this works:

"c:\program files\subversion\bin\svnserve.exe" -d -rc:\svnrepos

This runs svn serve not as "normal" program and not as a service.
There should be no feedback on the command line and the svn://
protocol should now work. If it does stop svnserve (ctrl-c will do
it) then do

sc create svn binpath= "c:\program files\subversion\bin\svnserve.exe
--service -rc:\svnrepos" displayname= "Subversion Server" depend=
Tcpip start= auto
net start svn

(The net start command waits till the service starts - I use that
rather than sc start)

Again the svn:// should work.

See how that goes.

Cheers,
Purple

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2376521

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-07-29 10:36:19 CEST

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

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