SVN creates a repository to configuration

svnadmin create /opt/svn/daicw #Create Repository

After creating the cd to the creation folder, here is daicw, in Join the folder conf

There are three files authz passwd svnserve.conf

vim authz:

[groups]

# harry_and_sally
= harry,sally
# harry_sally_and_joe
= harry,sally,&joe
g_admin
=dcw
[
/]
@g_admin
= rw
* =

vim passwd:

[users]

# harry
= harryssecret
# sally
= sallyssecret
dcw
= 123456
# Account
= password

vim svnserve.conf starts as follows

anon-access =< span style="color: #000000;"> read

auth-access = write
password
-db = passwd
authz
-db = authz
realm
= My First Repository

svnadmin create /opt/svn/daicw #create repository

[groups]

# harry_and_sally
= harry,sally
# harry_sally_and_joe
= harry,sally,&joe
g_admin
=dcw
[
/]
@g_admin
= rw
* =

[users]

# harry
= harryssecret
# sally
= sallyssecret
dcw
= 123456
# Account number
= password

anon-access = read

auth
-access = write
password
-db = passwd
authz
-db = authz
realm
= My First Repository

Leave a Comment

Your email address will not be published.