Questions tagged [svnserve]

svnserve allows access to Subversion repositories using Subversion's custom network protocol.

svnserve allows access to Subversion repositories using Subversion's custom network protocol.

You can run svnserve as a standalone server process, you can have a daemon such as inetd or xinetd launch it for you on demand, or you can have sshd launch it on demand for the svn+ssh:// access method.

For more information, click here: http://svnbook.red-bean.com

71 questions
26
votes
4 answers

Is there a graceful way to stop svnserve -d

I'm looking for something like: svnserve stop
chickeninabiscuit
  • 8,307
  • 10
  • 47
  • 55
20
votes
3 answers

svnserve with LDAP

I would like to know how to setup an SVN repository with LDAP authentication. I do not want to use Apache DAV though.
Shyam
  • 5,401
  • 13
  • 40
  • 66
18
votes
0 answers

How to move an SVN repository from one server to another

I need to copy the existing SVN repository from one development server to another. Per my understandings, I have come up with the steps. It would be great if someone can verify and let me know if I have missed any point. Current server:…
Shweta Chandrakar
  • 353
  • 2
  • 3
  • 12
6
votes
1 answer

Running svnserve alongside Subversion Edge

If I run svnserve.exe alongside Subversion Edge, would it cause any conflicts? We have someone who remotely checks in code, and he will be doing via https, but for everyone internally I want to take advantage of the higher speed that the plain svn…
Bender the Greatest
  • 12,311
  • 17
  • 65
  • 124
6
votes
2 answers

Subversion 1.9.2: Invalid filesystem format option 'addressing logical'

I installed SVN 1.9.2 in UAT Linux redhat 6.6 using tarball and run the SVNSERVE as daemon and all went fine. Then I created a repository and configured the repo for client access and tried to access the repository using tortoiseSVN but could not…
intechops6
  • 755
  • 1
  • 9
  • 27
6
votes
2 answers

svn checkout: No repository found

I noticed that SVN works well until I restart my machine (Mac OS X). Then, when I do svn checkout svn://10.0.0.9/testA, I get the error svn: No repository found in 'svn://10.0.0.9/testA'. svn info produces the following: Path: . URL:…
Mika
  • 1,065
  • 5
  • 19
  • 33
6
votes
3 answers

Does *anyone* have Windows SVNServe authenticating to AD/Kerberos via SASL/GSSAPI?

Scenario: Windows server in a AD domain hosting a Subversion repository using SVNSERVE only (no Apache), and not VisualSVN. Objective: Authenticate users to the Subversion repository via SASL through GSSAPI to a Windows domain via Kerberos.…
David W
  • 9,822
  • 30
  • 59
5
votes
3 answers

How to setup "svnserve --service" to run on Windows?

When starting from cmdline svnserve.exe -d -r d:\svn\mytools all working fine. Then I had tried to set it up to run as Windows service: @echo off set SvnHome=C:\Program Files\TortoiseSVN set SvnRepository=D:\Svn\mytools sc delete SvnMyTools sc…
dmitry_bond
  • 330
  • 1
  • 2
  • 12
5
votes
1 answer

How do I setup a simple SVN server?

I have a working repository that I created a long time ago, and now I'm trying to set up another, but I'm having great difficulty. Here's what I did to create the second one; and I would expect this to work: U:\repos>svnadmin create…
3
votes
1 answer

'sc' is not recognized as an internal or external command

I am trying to create a svnserver using cmd after i changed svnserve.conf by uncommenting the following lines in the file, anon-access = read auth-access = write command execute in cmd is, sc create svnserver binpath= "C:\Program…
Nishant Kumar
  • 413
  • 2
  • 8
  • 18
3
votes
3 answers

How does svnserve serve up multiple repositories?

I had svnserve configured to look at directory "Foo" for the repository it served. Now I changed the configuration from one repository to multiple repositories, all contained in one directory "Bar". I reconfigured svnserve to look at "Bar", but now…
Miel
  • 3,127
  • 2
  • 24
  • 38
3
votes
1 answer

How to copy a Subversion repository to another repository

We are running an SVN repository with svnserve. We have now created a new svnserve SVN repository on another machine in another network. I would now want to copy the active repository to the new repository. How can I do this? I would like to copy…
user1340582
  • 17,299
  • 31
  • 104
  • 159
3
votes
1 answer

Subversion Authz config on Apache

I'm trying to restrict the access to my subversion repositories to certain users. However I can't get it to work the way I want. I have three repositories. Let's call them repo1, repo2 and repo3. I also have three users. user1, user2 and user3. What…
Ozzie
  • 11,365
  • 3
  • 18
  • 24
2
votes
1 answer

"Chunk delimiter was invalid" or "Could not read chunk size" on Visual SvnServer

ERRORS When checking out a large project we receive error on a random file in the project: Could not read chunk size: connection was closed by server or Chunk delimiter was invalid the problem occurs randomly. Most of the time everything…
ar099968
  • 4,434
  • 5
  • 36
  • 88
2
votes
1 answer

svn+ssh with public key on linux: merge fails but co, up, commit works

I have the following problem: I followed the many tutorials one can find on setting up a public key access via svn+ssh to a subversion repository on a linux machine with ssh-only access. It seems to work for checkouts, updates and commits, but if…
Daschm
  • 21
  • 3
1
2 3 4 5