How to setup access control in SVN? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T16:18:48Zhttp://stackoverflow.com/feeds/question/81361http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn9How to setup access control in SVN?c5ask2008-09-17T09:12:16Z2008-09-17T14:16:28Z
<p>I have setup a repository using SVN and uploaded projects. There are multiple users working on these projects. But, not everyone is working on all projects and require access. I want to setup permissioning for each of the projects with users.</p>
<p>How to achieve this?</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81389#813891Answer by Victor for How to setup access control in SVN?Victor2008-09-17T09:15:34Z2008-09-17T09:15:34Z<p>You can always set up different repositories for each project.</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81396#813962Answer by Mladen Mihajlovic for How to setup access control in SVN?Mladen Mihajlovic2008-09-17T09:17:01Z2008-09-17T09:17:01Z<p>The best way is to set up Apache and to set the access through it. Check the <a href="http://svnbook.red-bean.com/" rel="nofollow">svn book</a> for help. If you don't want to use Apache, you can also do minimalistic access control using svnserve.</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81457#814578Answer by Stephen Bailey for How to setup access control in SVN?Stephen Bailey2008-09-17T09:29:50Z2008-09-17T14:16:28Z<p>In your <strong>svn\repos\YourRepo\conf</strong> folder you will find 2 files <strong>authz</strong> and <strong>passwd</strong> these are the 2 you need to adjust.</p>
<p>In the <strong>passwd</strong> file you need to add some username and passwords. I assume you have already done this since you have people using it</p>
<pre><code>[users]
User1=password1
User2=password2
</code></pre>
<p>Then you want to assign permissions accordingly with the <strong>authz</strong> file :</p>
<p>Create the conceptual groups you want, and add people to it</p>
<pre><code>[groups]
allaccess = user1
someacces = user2
</code></pre>
<p>Then choose what access they have from both the permissions and projec level</p>
<p>So lets give our all access guys all access from the root</p>
<pre><code>[/]
@allacces = rw
</code></pre>
<p>But only give our someaccess guys only read access to some lower level project :</p>
<pre><code>[/someproject]
@someaccess = r
</code></pre>
<p>You will also find some simple documentation in the <strong>authz</strong> and <strong>passwd</strong> files.</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81468#814681Answer by RB for How to setup access control in SVN?RB2008-09-17T09:31:25Z2008-09-17T09:31:25Z<p>Although I would suggest the Apache approach is better, SVN Serve works fine and is pretty straightforward.</p>
<p>Assuming your repository is called "my_repo" and it is stored in c:\svn_repos : </p>
<ol>
<li><p>Create a file called "passwd" in "C:\svn_repos\my_repo\conf". This file should look like:</p>
<p>[Users]
username = password
john = johns_password
steve = steves_password</p></li>
<li><p>In c:\svn_repos\my_repo\conf\svnserve.conf set </p>
<p>[general]
password-db = passwd
auth-access=read
auth-access=write</p></li>
</ol>
<p>This will force users to login to read or write to this repository.</p>
<p>Follow these steps for each repository, only including the appropriate users in the passwd file for each repository.</p>
<p>Cheers,</p>
<p>RB.</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81486#814860Answer by djeidot for How to setup access control in SVN?djeidot2008-09-17T09:33:27Z2008-09-17T09:33:27Z<p>With VisualSVN Server it's as simple as adding users and setting permissions...</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81700#817000Answer by petr k. for How to setup access control in SVN?petr k.2008-09-17T10:12:10Z2008-09-17T10:12:10Z<p>Devote some time to reading the official SVN book. It's an exhaustive resource, covering almost everything about SVN (unless, of course, you encounter a problem, in which case deep digging into forums is usually the only option).</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/81711#817110Answer by Matthew Schinckel for How to setup access control in SVN?Matthew Schinckel2008-09-17T10:12:45Z2008-09-17T10:12:45Z<p>You can use svn+ssh:, and then it's based on access control to the repository at the given location.</p>
<p>This is how I host a project group repository at my Uni, where I can't setup anything else. Just having a directory that the group owns, and running svn-admin (or whatever it was) in there means that I didn't need to do any configuration.</p>
http://stackoverflow.com/questions/81361/how-to-setup-access-control-in-svn/83418#834183Answer by VonC for How to setup access control in SVN?VonC2008-09-17T13:49:16Z2008-09-17T13:49:16Z<p>@<a href="#81457" rel="nofollow">Stephen Bailey </a></p>
<p>To complete your answer, you can also delegate the user rights to the project manager, through a plain text file in your repository.</p>
<p>To do that, you setup your svn database with a default authz file containing the following</p>
<pre><code>###########################################################################
# The content of this file always precedes the content of the
# $REPOS/admin/acl_descriptions.txt file.
# It describes the immutable permissions on main folders.
###########################################################################
[groups]
svnadmins = xxx,yyy,....
[/]
@svnadmins = rw
* = r
[/admin]
@svnadmins = rw
@projadmins = r
* =
[/admin/acl_descriptions.txt]
@projadmins = rw
</code></pre>
<p>This default authz authorize the svn admins to modif a plain visible text file within your svn repo,<br />
called <strong>'/admin/acl_descriptions.txt'</strong>, in which the svn admins or project managers will modify and register the users.</p>
<p>Then you setup a pre-commit hook which will detect if the revision is composed of that file (and only that file)<br />
If it is, this hook scripts will validate the content of your plain text file and check if each line is compliant with the svn right syntax.</p>
<p>Then a post-commit hook will update \conf\authz file with the <strong>concatenation</strong> of :</p>
<ul>
<li>the TEMPLATE authz file presented above</li>
<li>the plain text file '/admin/acl_descriptions.txt'</li>
</ul>
<p>The first iteration is done by the svn admin, he adds:</p>
<pre><code>[groups]
projadmins = zzzz
</code></pre>
<p>He commits his modification, and that updates the authz file.</p>
<p>Then the project manager 'zzzz' can add, remove or declare any group of users and any users he wants.
He commits the file and the authz file is updated.</p>
<p><strong>That way, the svn admin does not have to follow any and all users for all svn repos</strong>.</p>