WINDOWS 下SVN服务自动启动问题

首先我遇到该问题搞了半天。网上贴出来的解决方法,在配制的过程出现了一些。现在与大家分享一下。

一、点击“运行”,输入“cmd”进入DOS。
二、把下面内容直接copy到命令窗口中。

sc delete svnservice
sc create svnservice binpath= "E:\programm\Subversion\bin\svnserve.exe --service --root E:\svnRoot " DisplayName= "SVNService" depend= Tcpip start= auto password= "password"


对上面的命令的重要解释:E:\programm\Subversion\bin\svnserve.exe 这个路径是你的SVN服务器安装路径;
E:\svnRoot 一定要有,不然你的服务启动不了。

三、执行上面命令后如果提示成功,然后就执行



你可能感兴趣的:(windows)