[Author]: Kwu
Subversion is still the first choice for most corporate code management, and this article describes the steps of the Linux quick Configuration svn repository:
1, install the SVN configuration library, which uses centos6.6 's own SVN
Svnserve--version
Display version:
Svnserve, Version 1.6.11 (r934486)
2. Create SVN configuration Warehouse
Mkdir/opt/svn/repositoriessvnadmin create/opt/svn/repositories
3, modify the configuration file, the relevant path
Cd/opt/svn/repositories/conf
1) Authz
[/]ADMIN=RW
2) passwd
[users]# Harry = harryssecret# sally = Sallyssecretadmin = 123456
3) svnserve.conf
[general]anon-access = noneauth-access = writepassword-db = Passwdauthz-db = Authz
4. Start SVN service, corresponding port 3690
Svnserve-d-r/opt/svn/repositories
5. Stop SVN service
Killall Svnserve
or by viewing
Ps-ef|grep SVN
Kill-9 PID
Linux Quick Configure SVN library