博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
svn的安装与配置(转载)
阅读量:5155 次
发布时间:2019-06-13

本文共 3684 字,大约阅读时间需要 12 分钟。

一,Subversion有两种运行方式

一种是基于Apache Http Server另外一种是Subversion Standalone Server

以下是基于httpd的svn的安装

二,安装svn

yum install httpd httpd-devel subversion mod_dav_svn

如果你已经装了apache了,不想装二个apache的话。你可以单独下个subversion来装一下就行了。

注意一点的是,路径要正确:

#./configure –with-apxs=/apache路径/bin/apxs –prefix=/usr/local/subversion

–with-apr=/usr/local/apache2 –with-apr-util=/apache路径 –with-ssl –with-zlib
–enable-maintainer-mode

 

1),确定已经安装了svn模块:mod_dav_svn

[root@svn zhangying]# cd /etc/httpd/modules/

[root@svn modules]# ls |grep svn
mod_authz_svn.so
mod_dav_svn.so
[root@svn modules]#

2),看一下svn是否已安装成功

[root@svn modules]# svn –version

svn, version 1.4.2 (r22196)
compiled Aug 10 2009, 18:00:04

Copyright (C) 2000-2006 CollabNet.

Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.

- handles ‘http’ scheme
- handles ‘https’ scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
- handles ’svn’ scheme
* ra_local : Module for accessing a repository on local disk.
- handles ‘file’ scheme

三,创建仓库,修改svn配置文件

1),加载模块

[root@svn conf.d]#cd /etc/httpd/conf.d

[root@svn conf.d]# nano subversion.conf

添加以下二行

LoadModule dav_svn_module     modules/mod_dav_svn.so

LoadModule authz_svn_module   modules/mod_authz_svn.so

2),创建仓库,以及仓库目录的设置

# mkdir -p /var/www/svn

# cd /var/www/svn

# svnadmin create test

# chown -R apache.apache test

# vi /etc/httpd/conf.d/subversion.conf

<Location /svn>

DAV svn
#注意,下面的路径,子文件夹名不能和父文件名重复,不然就会出问题

SVNParentPath /var/www/svn/repository

#
#   # Limit write permission to list of valid users.
#   <LimitExcept GET PROPFIND OPTIONS REPORT>
#      # Require SSL connection for password protection.
#      # SSLRequireSSL
#
AuthType Basic
AuthName “Subversion repository”
AuthzSVNAccessFile /var/www/svn/repository/authz.conf
AuthUserFile /var/www/svn/repository/authfile
Require valid-user
#   </LimitExcept>
</Location>

3),添加用户

下面建立可访问用户文件

# htpasswd -c /var/www/svn/repository/authfile 用户名

要增加用户,则使用下面命令

# htpasswd /var/www/svn/repository/authfile 用户名  4),权限分限
# nano /var/www/svn/repository/authz.conf [test:/] //这表示,仓库test的根目录下的访问权限  zhangy = rw //test仓库zhangy用户具有读和写权限  hunk = r //test仓库hunk用户具有读权限  [/] //这个表示在所有仓库的根目录下  * = r //这个表示对所有的用户都具有读权限  #[groups] //这个表示群组设置  #svn1-developers = zhangy, hunk //这个表示某群组里的成员  #svn2-developers = zhangy #[svn1:/] #@svn1-developers = rw //如果在前面加上@符号,则表示这是个群组权限设置

搞好之后重起apache

# service httpd restart5),svn的一些操作
a.import操作[root@svn www] svn import /var/www/zhangy/test/ file:///var/www/svn/repository/test -m "Initial repository test"Adding         /var/www/zhangy/test.txt Adding         /var/www/zhangy/test1.txt注意:1,file:///在这里是3个/,我开始导入时写成了二个,老是报错,我就很晕。2,在导入时,如果存在中文字符的文件名导入会停止报错b.check out操作[root@svn www] cd /var/www[root@svn www] svn co http://yoursvnserver/svn/testAuthentication realm: <http://yoursvnserver:80> Subversion repositoryPassword for 'youruser':A    test/test.txtA    test/test1.txtChecked out revision 1.c.edit和commit操作[root@svn www] cd /var/www[root@svn www] nano test.txt -- 修改一些东西后.[root@svn www] svn commit -m "Added a line to test.txt."Sending        test/test.txtTransmitting file data .Committed revision 2.d.add和delete操作
[root@svn www] svn co http://yoursvnserver/svn/test
 
[root@svn www] cd /var/www[root@svn www] nano test2.txt -- 添加一个新文件.[me@mylappy ~] svn add test2.txtA         test2.txt[me@mylappy ~] svn commit -m "new one"Adding         test2.txtTransmitting file data .Committed revision 3.删除操作把add换成delete就可以了

转载于:https://www.cnblogs.com/bobchan/archive/2011/02/19/1958390.html

你可能感兴趣的文章
新手谈Linux
查看>>
kafka部署
查看>>
开始把一些东西放到博客上
查看>>
快乐数
查看>>
魔法方法
查看>>
ServletContext、ServletConfig(FilterConfig)学习笔记
查看>>
hibernate缓存问题
查看>>
《Android深度探索》第一章心得体会
查看>>
linux常用命令-文件处理命令
查看>>
百度13号移动笔试
查看>>
监听url地址栏变化
查看>>
swoole/php-cp 安装
查看>>
深入JVM对象引用
查看>>
(转载)Vim入门图解说明
查看>>
Spring Security
查看>>
SpringSecurity 配置
查看>>
一台服务器多个tomcat运行
查看>>
控制并发数量
查看>>
计算任意两个圆的交点
查看>>
原型和构造函数(1)
查看>>