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
1
vote
1 answer

How to run svnserve protocol to server multiple paths

I am setting up a svn server where I have more than one SVN repository paths like /var/data/svnrepos1/forclient1 and /var/data/svnrepos2/forclient2. The SVN is installed in a custom path /usr/install/svn1.8/bin/{svnadmin,svnserve,svn,etc}. I am try…
intechops6
  • 1,007
  • 4
  • 22
  • 43
1
vote
3 answers

Is svnserve not strictly required for a local, single-user repo?

I was reading the Red Bean book and noticed this paragraph: Do not be seduced by the simple idea of having all of your users access a repository directly via file:// URLs. Even if the repository is readily available to everyone via a…
Kev
  • 15,899
  • 15
  • 79
  • 112
1
vote
1 answer

SVN checkout can not recognize resource path: svn:// ,but " file:/// " is ok

I create a repository,path is d:svn/repos1 When svn checkout,if the URL of repository is file:///D:/svn/repos1,it can checkout success,but if use the url of repository as svn://localhost/svn/repos1,then checkout failed. and the error is "Unable to…
LeovKing
  • 11
  • 3
1
vote
2 answers

svnserve: can I have common configuration for all my repos

I am trying to have a local repository for my personal projects. With one or two users. And as many projects as I wish. Mainly in a shared MyBookLive disks. svn server is running in a local mac mini pointing to that shared disk. I found every svn…
karim
  • 15,408
  • 7
  • 58
  • 96
1
vote
1 answer

Are there any tools to have an SVN server save the comment log into an SQL database?

I'm curious if there are any open-source tools so an SVN server (such as VisualSVN) can be configured to maintain the comment log in an SQL database (such as MySQL). I'm only interested in storing the repository name, revision number, and associated…
Jesse Craig
  • 560
  • 5
  • 18
1
vote
3 answers

Unknown hostname localhost when connecting to SVN

I have a RedHat 6 enterprise server that I have installed SVN 1.6 on. This machine is not on a network and has never been on a network. Eventually, it will be added to a network but not right now. I am running svnserve to provide access to the…
jonathan
  • 59
  • 2
  • 6
1
vote
1 answer

svn doesn't want to ask for password

My config: root@/var/svn/skryb/conf# cat /etc/init.d/svnserve [general] anon-access = none auth-access=read auth-access=write password-db = passwd [sasl] restarting svnserve to make sure it works: # killall svnserve # /etc/init.d/svnserve # ps fax…
Stepan Yakovenko
  • 8,670
  • 28
  • 113
  • 206
0
votes
1 answer

svnserve refuses to authorize any writes to a local svn:// repository

I'm using a very basic setup for svnserve to provide an svn:// repository to my local network. Here's my setup, as well as my problem: pastebin Each time I modify the auth details I restart the server entirely using killall svnserve. I've tried…
Chris
  • 3
  • 2
0
votes
1 answer

How to restrict svn commands in svnserve

I am using svn+ssh to interact with repositories. I would like to know if there is any mechanism to retrict users to only a set of svn commands, for example, to prevent the use of locks. In the worst case scenario, if I have to modify the source…
Sunny
  • 9,245
  • 10
  • 49
  • 79
0
votes
4 answers

Unable to start subversion svnservice as a service on WIndows 7, access problem

Trying to run SVN as a service on a Windows 7 machine, Im the only user. First tried to create service from DOS and it gave me this error [SC] OpenSCManager FAILED 5: Access is denied. So I then start cmd window with Run as Administrator, and that…
Paul Taylor
  • 13,411
  • 42
  • 184
  • 351
0
votes
0 answers

Terminal zsh: command not found: svnserve

The Apple book has been able to view the version of svnserve, M1 chip computer through the terminal after entering the command prompt zsh: command not found: svnserve。If there are seniors who have encountered this problem, they can give some…
0
votes
1 answer

Restricting SVN access for some users using "Path-based -authorization"

I am trying to use path-based -authorization. I have a working repository as follows: C:/SVNRepository/Test_Parent_folder/Test_child/test.txt , that I need to restrict for user 'agupta'. My server URL is : …
Abha
  • 327
  • 3
  • 11
  • 26
0
votes
2 answers

AnkhSVN error on updating solution: Can't write to connection: An operation was attempted on something that is not a socket

When I update solution in visual studio, I have got this error: SharpSvn.SvnSystemException: Can't write to connection: An operation was attempted on something that is not a socket. at SharpSvn.SvnClientArgs.HandleResult(SvnClientContext…
Hamedb
  • 73
  • 10
0
votes
1 answer

svnserve: Unable to restrict access to specific directories

I have a SVN repository set up which is provided access through svnserve and ssh. The command in authorized_keys is set up (only relevant part shown) as: svnserve -t --tunnel-user="${SSH_CLIENT%% *}" -r "/home/myDir" ... I am trying to use authz…
Sunny
  • 9,245
  • 10
  • 49
  • 79
0
votes
1 answer

Stopping/starting svnserve locally

(Developing on Ubuntu) I'm installing SVN locally to track my project up to its 1.0 release. Nothing fancy, as I am the sole developer, so no authentication/SSH, etc; nothing with webdav/httpd, etc. Just a plain old local server instance! I've…
Zac
  • 421
  • 5
  • 8