Hi, I am thinking of using the VisualSVN server, but I am wondering is it ok for me to manually start the svnserve.exe and run a svn: connection to the same repository? The support for this is not there unless you write your own command file something like.
REM Install the service sc create svn.local binpath= "\"c:\Program Files\VisualSVN Server\bin \svnserve.exe\" --service --root D:\Repositories" displayname= "SVN Service" depend= Tcpip REM Configure the service to auto-start sc config svn.local start= auto REM Initialize the service sc start svn.local And then start as a service. My question is , is it safe to do this? can any data corruption occur (I remember reading somewhere that this was not supported?) Also is it possible (acceptable) to run serveral subversion servers on the same machine on different ports ?