How to create svnserve service for Tortoise SVN server?

How to create and delete svnserve service for Tortoise SVN server?

Tortoise svn no connection could be made because the target machine actively refused it

How to create svnserve service on windows, execute the following command to create service which is automatically started when window start.


For create svnserve service on service control manager:-

sc create svnserve binpath= "\"C:\Program Files\TortoiseSVN\bin\svnserve.exe\" --service --root c:\repos" displayname= "svnserve" depend= tcpip start= auto





To custom in command:-

C:\Program Files\TortoiseSVN\bin\svnserve.exe\ = It is location of TortoiseSVN file programme

c:\repos = It is location of repositry where your svn repository created on your system.

Displayname "svnserve' = It is display name of service.


For Delete svnserve service on service control manager:- 

sc delete svnserve binpath= "\"C:\Program Files\TortoiseSVN\bin\svnserve.exe\" --service --root c:\repos" displayname= "svnserve" depend= tcpip start= auto

Share:

0 comments

Please leave your comments...... Thanks