安装Subversion
1 安装svn setup。
2 将SVN配置成服务。一般情况下,我们将SVN服务安装成可以以windows系统服务的形式在开机时自动运行。但Subversion安装程序还不能把自己安装成windows服务,需要我们自己进行手动安装,方法如下:打开一个DOS命令窗口,执行如下命令:
sc
create svnserve binPath= "\"C:\Program
Files\Subversion\bin\svnserve.exe\" --service --root d:\svn"
DisplayName= "Subversion" depend= Tcpip start= auto
注意在binPath 、 DisplayName、depend、start后的=号要紧跟其后。
其
中,sc是windows自带的服务配置程序,参数binPath表示svnserve可执行文件的安装路径,由于路径中的"Program
Files"带有空格,因此整个路径需要用双引号引起来。而双引号本身是个特殊字符,需要进行转移,因此在路径前后的两个双引号都需要写成\"
--service
参数表示以windows服务的形式运行,--root指明svn
repository的位置,service参数与root参数都作为binPath的一部分,因此与svnserve.exe的路径一起被包含在一对双
引号当中,而这对双引号不需要进行转义。
displayname表示在windows服务列表中显示的名字, depend= Tcpip 表示svnserve服务的运行需要tcpip服务,start= auto表示开机后自动运行。
安装服务后,svnserve要等下次开机时才会自动运行。若要马上运行服务,则执行net start Subversion
即可。
若要卸载svn服务,则执行 sc delete svnserve
即可。
3 配置用户权限。
使匿名用户无访问权限。只允许认证用户访问。
打开d:\svn\conf\svnserve.conf。修改如下:
### 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 = 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 = My First Repository
添加用户szy,密码:szy
打开D:\svn\conf\passwd,修改如下:
### 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]
szy = szy
建立一个用户组admin,并把我自己加入这个组,赋予这个组中成员读写的权利。^_^,只有我能这个SVN版本库进行操作喽。
打开D:\svn\conf\authz,修改如下:
### 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]
admin = szy
[/]
* = r
@admin = rw
重启Subversion服务后生效。
subversion是可以很好地控制中文目录的权限的。
方法很简单,就是将你的权限控制文件的格式转换为UTF-8格式,
将权限文件改成UTF-8格式我使用的是UltraEdit的菜单"ASCII to UTF-8 (Unicode Editing)"。
分享到:
相关推荐
2. **SVN配置**: - 创建仓库(Repository):仓库是存储项目代码的地方。在服务器上指定一个目录作为仓库,然后使用SVN工具(如`svnadmin`命令行工具)创建仓库。 - 配置用户权限:为了管理团队访问,需要设置...
### 基于Windows的SVN安装与配置详解 #### SVN概述 SVN,全称Subversion,是一款开源的版本控制系统,专为管理和追踪随时间变化的数据而设计。不同于普通文件服务器,SVN的核心功能在于它能够记录每一次对文件的...
总结,RHEL中的SVN安装与配置涉及YUM安装SVN和相关模块,创建和配置SVN仓库,设置用户认证和权限,以及集成Apache服务器以实现Web访问。这个过程对于团队协作开发和版本控制非常重要,因为它允许成员远程访问和管理...
二、SVN配置 1. 创建仓库:安装完成后,需要创建一个SVN仓库来存储项目文件。在Windows上,通过VisualSVN Server Manager创建新仓库;在Linux/MacOS,可以使用`svnadmin create /path/to/repo`命令创建仓库。 2. ...
### Red Hat Linux下的SVN安装与配置过程 #### 一、引言 本文将详细介绍如何在Red Hat Linux 4.4 (i386架构)系统下安装并配置Subversion (SVN)服务器。SVN是一款广泛使用的版本控制系统,特别适用于软件开发团队...
在本篇文章中,我们将详细探讨如何安装和配置SVN,以便于团队有效地管理和共享代码资源。 **1. 安装SVN服务器** 在Windows系统上,通常使用VisualSVN Server作为SVN服务器。首先,访问VisualSVN官网下载安装包,...
### Linux SVN 安装与配置详解 在Linux环境下安装并配置Subversion(简称SVN),是一种常见的版本控制系统操作。本文将详细介绍如何在不结合Apache的情况下完成这一过程,为那些需要独立运行SVN服务的用户提供全面...
- **下载与安装准备** - 下载`VisualSVN-Server-1.5.2`安装包,该版本适用于服务器端安装。 - 开始安装过程,如图所示: - 图1-1:点击“下一步”(Next); - 图1-2:选择“我同意”(I Agree)并点击“下一步”...
### SVN 安装与配置 1. **安装**: - Windows:可以通过 TortoiseSVN 这样的图形化界面工具进行安装,它集成了 SVN 的命令行工具。 - Linux 和 macOS:通常通过包管理器(如 apt-get 或 brew)安装 SVN,例如 `...
#### 一、软件获取与安装 - **SVN服务器**:SVN(Subversion)是一种分布式版本控制系统,用于管理软件开发中的源代码版本控制。安装SVN服务器可以让团队成员通过网络共享代码库,并且能够追踪每一次的更改历史。 - ...
### Apache + SVN 安装与配置详解 #### 概述 在软件开发过程中,版本控制系统是必不可少的工具之一。Subversion(简称SVN)作为一款经典的集中式版本控制系统,在项目管理方面发挥着重要作用。而Apache作为一款...
本教程将详细讲解如何在MyEclipse 10中安装并配置SVN,以实现高效、安全的代码版本控制。提供的压缩包文件包含了配置所需的全部资料,包括配置文件和详细的说明。 首先,我们需要理解SVN的作用。SVN是一种集中式的...
SVN安装与配置,个人亲身体验 MyEclipse 中配置SVN插件 MyEclipse版本:MyEclipse 8.5 对于 MyEclipse需要安装 Subclipse 插件。安装过程如下: 1、在MyEclipse安装文件下新建文件夹,如下::\MyEclipse\myPlugin\...