How to manage multiple projects on CentOS SVN server

How to manage multiple projects on CentOS SVN server

One demand

Generally speaking, a company has multiple projects. After setting up the SVN server, it is necessary to use SVN to ensure that developers who are not in a project cannot access the code in other projects.

Assumptions:

There are 3 projects: project1, project2, project3

There are 6 developers: eg1, eg2, eg3, eg4, eg5, eg6

eg1 and eg2 can only access project1;

eg3 and eg4 can only access project2;

eg5 and eg6 can only access project3;

Second, the realization

In the repository root path: assuming it is /home/svnroot

cd /home/svnroot

// Create three code repositories

svnadmin create project1
svnadmin create project2
svnadmin create project3

//Copy the two permission configuration files to the repository root path to manage all code repositories in a unified manner

cd /projcet1/conf
cp authz passwd /home/svnroot

// Open the configuration file

vim svnserve.conf

Modify it as follows:

anon-access = none # Disable anonymous access
auth-access = write
password-db = /home/svn/passwd #Use the password file uniformly
authz-db = /home/svn/authz
realm = project1 #Authority domain name, very important, write your project name

Modify project2's svnserve.conf separately, same as above, the last line is written

anon-access = none # Disable anonymous access
auth-access = write
password-db = /home/svn/passwd #Use the password file uniformly
authz-db = /home/svn/authz
realm = project2 #Authority domain name, very important, write your project name

Modify project3's svnserve.conf separately, same as above, the last line is written

anon-access = none # Disable anonymous access
auth-access = write
password-db = /home/svn/passwd #Use the password file uniformly
authz-db = /home/svn/authz
realm = project3 #Authority domain name, very important, write your project name

Modify two permission management files:

cd /home/svnroot
vim passwd

// Username = Password

[users]
eg1 = 123456
eg2 = 123456
eg3 = 123456
eg4 = 123456
eg5 = 123456
eg6 = 123456
vim authz
[groups] # Grouping
admin = eg1,eg2
guest = eg3,eg4
guset1 = eg5,eg6

[/] # Administrators have all read and write permissions
@admin = rw
* =

[project1:/] # Access control for project 1, guest1 and 2 cannot access
@admin = rw
or
eg1 = rw
eg2 = rw

[project2:/]
@guest = rw
or
eg3 = rw
eg4 = rw

[project3:/]
@guest1 = rw
or
eg5 = rw
eg6 = rw

Three restarts

svnserve -d -r /home/svnroot

// Stop command

killall svnserve

Four practical tests

Each group member can only access their own projects and has no permission to view other people's projects.

Only administrators can view all projects

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • SVN server is installed on centos7 system platform
  • Building SVN server and MySQL under centos
  • SVN Server Installation Tutorial in CentOS 7.0
  • Ideas for building SVN server in Linux (centos7)
  • Detailed explanation of the entire process of CentOS SVN server construction and automatic deployment
  • Detailed steps to build an SVN server under CentOS
  • How to build SVN server under Linux (centos)

<<:  js to implement add and delete table operations

>>:  Introduction to HTML page source code layout_Powernode Java Academy

Recommend

Use Nginx to build a streaming media server to realize live broadcast function

Written in front In recent years, the live stream...

js realizes the function of clicking to switch cards

This article example shares the specific code of ...

How to remove the blue box that appears when the image is used as a hyperlink

I recently used Dreamweaver to make a product pres...

Vue3 + TypeScript Development Summary

Table of contents Vue3 + TypeScript Learning 1. E...

How to isolate users in docker containers

In the previous article "Understanding UID a...

XHTML tutorial, a brief introduction to the basics of XHTML

<br />This article will briefly introduce yo...

How to reference external CSS files and iconfont in WeChat applet wxss

cause The way to import external files into a min...

The reason why MySQL uses B+ tree as its underlying data structure

We all know that the underlying data structure of...

HTML+CSS to achieve simple navigation bar function

Without further ado, I'll go straight to the ...

Detailed steps for setting up host Nginx + Docker WordPress Mysql

environment Linux 3.10.0-693.el7.x86_64 Docker ve...

Detailed Example of Row-Level Locking in MySQL

Preface Locks are synchronization mechanisms used...

11 ways to remove duplicates from js arrays

In actual work or interviews, we often encounter ...

Draw an iPhone based on CSS3

Result:Implementation Code html <div class=...

CSS and JS to achieve romantic meteor shower animation

1. Rendering 2. Source code HTML < body > &...