linux svn仓库建立,linux下搭建svn仓库,window下访问

今天遇到了一个linux下svn坑的地方,windows应该是不会出现的.建议配置的时候不要多余删除东西,完全按照我的配置来

配置环境centos6.8

1.安装svn

yum install subversion

2. 创建版本库

svnadmin create /home/svnHome

查看home下的目录就会多出一个svnHome,进入此目录可以看到一些文件,主要关注conf下三个配置文件

[root[@localhost](https://my.oschina.net/u/570656) svnHome]# cd conf/

[root[@localhost](https://my.oschina.net/u/570656) conf]# ls

authz passwd svnserve.conf

3. 配置svnserve.conf

这个文件主要设置一些svn服务的配置

vim 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 = My First Repository

[sasl]

### This option specifies whether you want to use the Cyrus SASL

### library for authentication. Default is false.

4.配置passwd文件

这个文件主要用于添加用户

vim passwd

修改配置文件如下

[users]

# harry = harryssecret

# sally = sallyssecret

hsm=123456

~

5.配置authz 文件权限

这个主要给用户分配读写权限

vim authz

修改配置文件如下

[aliases]

# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average

[groups]

# harry_and_sally = harry,sally

# harry_sally_and_joe = harry,sally,&joe

admin=hsm

# [/foo/bar]

# harry = rw

# &joe = r

# * =

# [repository:/baz/fuz]

# @harry_and_sally = rw

# * = r

[/]

@admin=rw

~

~

6.配置文件完成了之后,就是打开服务了

svnadmin -r -d /home/

我就知这个地出现了问题,千万不要写成

svnserve -r -d /home/svnHome

7.导出文件的时候也要注意

本机导出:

svn checkout svn://localhost/home/svnHome

其他机器就换成ip就好了

8. 如果配置出现了问题,可以执行下面的命令重启服务

$ ps -aux|grep svnserve

$ kill -9 ID号 杀死服务

$ svnserve -d -r /svn

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值