DevPinoy.org
A Filipino Developers Community

>>> First two to make 3 wins! <<<

Installing subversion windows service

My task yesterday was to transfer our subversion server to our new server.  I have the binaries for subversion 1.4.3 and our repository transferred and what's left is the creation of the windows service. 

i am using sc.exe to create the windows service with the following command:

sc create subversion binpath="d:\subversion\bin\svnserve.exe --service --root d:\subversion\svnrepository" displayname="Subversion" depend=Tcpip

but i keep getting the syntax help.  i looked up the FAQ again and found out that it was just the darn space after the equal signs.  it should have been:

sc create subversion binpath= "d:\subversion\bin\svnserve.exe --service --root d:\subversion\svnrepository" displayname= "Subversion" depend= Tcpip

Can't your parser handle that? hehehe.  So if ever you encounter this problem, you know where to look at.


Posted 02-15-2007 10:38 AM by jokiz
Filed under:

Comments

bonskijr wrote re: Installing subversion windows service
on 02-15-2007 2:47 AM

add'l param to start the service every time the server is started: "start= auto"

jokiz wrote re: Installing subversion windows service
on 02-15-2007 5:11 AM

yeah, i forgot about that, i set that from services.msc, :p


Copyright DevPinoy 2005-2008