Svnserve is a lightweight service that communicates with clients using a custom protocol over TCP/IP. The client accesses the Svnserve server through a URL starting with svn://or svn+ssh://.
The SVN server operates in two ways: standalone server svnserve and Apache as a module of Apache to Webdav/deltav protocol communication.
There are two ways in which SVN stores version data: BDB and FSFS. The BDB mode may lock the data when the server is interrupted. FThe SFS method is safer and better compatible.
A Installing Subversion
Apt-get Install Subversion
Two Create a library file
1. Create a folder
mkdir/root/svn/my
2. Create a repository and specify a data storage mode of FSFS
Svnadmin Create--fs-type fsfs/root/svn/my/
User Management
In the repository directory,/root/svn/my has the following folder:
Conf db format Hooks Locks README.txt
The Conf folder has the following files:
Authz Hooks-env.tmpl passwd svnserve.conf
http://www.ttlsa.com/svn/install-svnserve-on-linux/
Linux SVN server svnserve installation configuration