BLOG ARTICLE subversion install | 1 ARTICLE FOUND

  1. 2008/04/04 Subversion install on AIX

사용자 삽입 이미지
Subversion을 install하여 구동시킬 수 있는 방법을 간략하게 적은 문서입니다.

아래의 article에 jar 파일 등은 subersion, cvs 등의 repository에 저장하지 말라고 했는데 이 부분도 고민해보시기 바랍니다. MS-Word로 작성되어 있으며 향후 project 등에서 guide 문서등을 만들기 위한 용도로 article들이 제작될 예정이니 참고했으면 합니다.

Subversion install MS-Word 파일 :




설치 이후 사용자 control은 다음의 파일을 수정하면 쉽게 처리할 수 있습니다.
 만약 repository이름이 sample이라면 sample/conf 디렉토리에 존재하는 파일에 id/pass를 줌으로써 각 사용자에 대한 권한 등을 설정할 수 있습니다.

 - authz : 사용자에 대한 read/write 권한 파일

### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to a
### single user, to a group of users defined in a special [groups]
### section, or to anyone using the '*' wildcard.  Each definition can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').

[groups]
# harry_and_sally = harry,sally
admin = nolbu

[/]
nolbu = rw
jwchoi = rw
yjkim = rw

# [/foo/bar]
# harry = rw
# * =

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

 - passwd : username=password의 pair로 이루어진 사용자 파일

### This file is an example password file for svnserve.
### Its format is similar to that of svnserve.conf. As shown in the
### example below it contains one section labelled [users].
### The name and password for each user follow, one account per line.

[users]
# harry = harryssecret
# sally = sallyssecret
nolbu = nolbu00
jwchoi = jwchoi00
yjkim = yjkim00

 - svnserve.conf : authentication을 위한 설정 파일

### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository.  (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)

### Visit http://subversion.tigris.org/ for more information.

[general]
### These options control access to the repository for unauthenticated
### and authenticated users.  Valid values are "write", "read",
### and "none".  The sample settings below are the defaults.
# anon-access = read
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 conf directory.
### 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 conf
### directory.  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
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa.  The default realm
### is repository's uuid.
realm = Javapattern Repository

크리에이티브 커먼즈 라이센스
Creative Commons License
2008/04/04 11:06 2008/04/04 11:06