English 中文(简体)
SVNserve given Error 1053 该处没有回应开办或控制申请
原标题:SVNserve giving Error 1053 The service did not respond to the start or control request

我已经安装了SlikSVN和Im,试图建立Svnserve。 SlikSvn安装在C:Program 文件SlikSvn和C:Program 文件SlikSvnin正在路上。

服务的登记条目目前“

svnserve.exe --service -r "C:SVNReposities" DisplayName= "Subversion" depend= Tcpip start= auto

然而,当我尝试并开始服务时,我有以下错误:

Could not start SVNService service on Local Computer
Error 1053: The service did not respond to the start or control request in a timely fashion.

如果我把登记处的条目改为“

svnserve.exe --service -r "C:SVNReposities"

服务开始正确。 我可以指出发言后半部分的错误,任何人是否知道什么是错的,或者是否有能够帮助我解决这一问题的资源?

最佳回答

我开始工作

解决办法是删除我已经设立的服务,随后遵循关于侵权问题的下列指示。

http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-serversetup-svnserve.html>rel=“noreferer”>http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-serversetup-svnserve.html>

I created the service with the following command
sc create svnserve binpath= ""C:Program FilesSlikSvninsvnserve.exe" --service --root C:SVNReposities" displayname= "Subversion" depend= tcpip start= auto

and the resulting registry entry was
"C:Program FilesSlikSvninsvnserve.exe" --service --root C:SVNReposities

我认为,问题在于,我在创建这一服务时,没有正确避免双重引用。 这使得登记条目产生不正确,显示Name、依赖和开端留待《形象与人》登记条目结束。

最终结果是,当SVN Serve开始运作时,它消耗了整个线,作为根基目录,无法找到这些目录,从而导致服务无法开始。

问题回答

关于你的回答:

  1. Jeff Atwood used "-r" and you used "--root". I m not sure if that makes a difference or not
  2. The other difference is that you added a " in front of "C:Program Files..... According to Subversion docs that does make a difference. (see below)

sc 创设svnserve binpath=“c:svnservesvnserve.exeserve-service --root c:epos”显示名称=“颠覆”取决于tcpip的开始

如果其中任何一条道路包括空间,你必须使用(替罪羊)在路旁引述,如:

sc 创建Svnserve binpath=“C:Program 文件





相关问题
Best practices for Subversion and Visual Studio projects

I ve recently started working on various C# projects in Visual Studio as part of a plan for a large scale system that will be used to replace our current system that s built from a cobbling-together ...

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

How to search for file in subversion server?

Is there a way to search for a file in a subversion repository? Something similar to Unix find command, with which I can find the location of a file in a repository. I know there is svn list, but ...

热门标签