Linux構築svn

2025 ワード

ダウンロードsvn:yum install-y subversion
svnプロジェクトの作成:svnadmin create/www/svn/jianqian--jianqianはバージョンライブラリ名
svnの起動:svnserve-r-d/www/svn/jianqian/--listen-port 9999ポートを9999に設定できます
ユーザー名とパスワードの設定:
conf/authz
[groups]
admin=zouxingwei
[/]
zouhao=rw
zouxingwei=rw
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe

conf/passwd
ユーザーzouhao,zouxingweiのパスワードを設定する
[users]
#harry = harryssecret
#sally = sallyssecret
zouhao=2*/ejhy3(
zouxingwei=2*/ejhy3(

conf/svnserve.conf
[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 = 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 the
### directory containing this file.  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 = jianqian

注釈をつけて片付ける
svnコマンドを閉じる
ps -aux|grep svnserve
pidを検索して、直接killを落とします