The process of installing SVN on Ubuntu 16.04.5LTS

The process of installing SVN on Ubuntu 16.04.5LTS

This article briefly introduces the process of setting up SVN under Ubuntu system

Update Source

sudo apt-get update

Install SVN

sudo apt-get install subversion

Create a folder

sudo mkdir /home/svn
sudo mkdir /home/svn/repository
sudo chmod -R 777 /home/svn/repository
sudo svnadmin create /home/svn/repository
cd /home/svn/repository/
sudo chmod -R 777 db

Modify svnserve.conf

cd /home/svn/repository/conf/
sudo vi svnserve.conf

Modify these four lines as follows

anon-access = none Anonymous users cannot read auth-access = write Authorized users can write password-db = passwd The password file is password
authz-db = authz authority file is authz

### users have read and write access to the repository.
anon-access = none
auth-access = write
### The password-db option controls the location of the password
### database file. Unless you specify a path starting with a /,
### the file's location is relative to the directory containing
### this configuration file.
### If SASL is enabled (see below), this file will NOT be used.
### Uncomment the line below to use the default password file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control. Unless you specify a path
### starting with a /, the file's location is relative to the
### directory containing this file. The specified path may be a
### repository relative URL (^/) or an absolute file:// URL to a text
### file in a Subversion repository. If you don't specify an authz-db,
### no path-based access control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### The groups-db option controls the location of the groups file.

Modify the password file and add access users

sudo vi passwd

[users]
# harry = harryssecret
# sally = sallyssecret
lidata = lidata429

Add directory permissions to users

sudo vi authz

[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe

# [/foo/bar]
# harry = rw
# &joe = r
# * =

# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[/]
lidata=rw

Start the service and listen on port 81

sudo svnserve -d -r /home/svn --listen-port 81

Check whether SVN is started

ps -ef | grep svnserve

Stop service

kill all svnserve

Summarize

The above is the process of installing SVN on Ubuntu 16.04.5LTS introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Ubuntu 16.04 image complete installation tutorial under VMware
  • Detailed explanation of installing Python 3.7 and pip3 in Ubuntu 16.04 and switching to the default version
  • Ubuntu 16.04 installation tutorial of Sogou input method
  • Ubuntu16.04 installation mysql5.7.22 graphic tutorial
  • Detailed tutorial on installing Teamviewer on Ubuntu 16.04
  • Detailed tutorial on manually installing MongoDB on Ubuntu 16.04
  • Install VS Code based on Ubuntu 16.04 (Share)
  • The perfect solution to the dependency error when installing openssh-server under ubuntu16.04 (very good)

<<:  Share some key interview questions about MySQL index

>>:  Methods and steps to access Baidu Maps API with JavaScript

Recommend

How to position the header at the top using CSS sticky layout

Application scenarios: One of the new requirement...

Why MySQL does not recommend using null columns with default values

The answer you often hear is that using a NULL va...

Modification of the default source sources.list file of ubuntu20.04 LTS system

If you accidentally modify the source.list conten...

MySQL foreign key setting method example

1. Foreign key setting method 1. In MySQL, in ord...

Install MySQL 5.7.18 using rpm package under CentOS 7

I have been using MySQL recently. The article mys...

Pure HTML+CSS to achieve typing effect

This article mainly introduces the typing effect ...

SQL group by to remove duplicates and sort by other fields

need: Merge identical items of one field and sort...

In-depth understanding of MySQL various locks

Table of contents Lock Overview Lock classificati...

Detailed explanation of mysql transaction management operations

This article describes the MySQL transaction mana...

JS canvas realizes the functions of drawing board and signature board

This article shares the specific code of JS canva...

Tutorial on installing MySQL 5.7.18 decompressed version on Windows

1. Installation process MySQL version: 5.7.18 1. ...

Linux unlink function and how to delete files

1. unlink function For hard links, unlink is used...

Detailed explanation of Linux less command examples

less file name View File less file name | grep -n...

Mini Program natively implements left-slide drawer menu

Table of contents WXS Response Event Plan A Page ...