`

windows下部署svn服务

阅读更多

一、【安装Subversion Server,安装配置步骤如下】

1、安装Subversion

2、建立Repository

     创建文件目录        E:\repository\project

3、在命令行下执行     svnadmin create E:\repository\project

4、配置Repository

     进入Repository目录,即E:\repository\project,你会看到conf目录,进入该目录会看到passwd、        svnserve.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]
harry = harryssecret
sally = sallyssecret

    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 = read
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
realm = project

[sasl]
### This option specifies whether you want to use the Cyrus SASL
### library for authentication. Default is false.
### This section will be ignored if svnserve is not built with Cyrus
### SASL support; to check, run 'svnserve --version' and look for a line
### reading 'Cyrus SASL authentication is available.'
# use-sasl = true
### These options specify the desired strength of the security layer
### that you want SASL to provide. 0 means no encryption, 1 means
### integrity-checking only, values larger than 1 are correlated
### to the effective key length for encryption (e.g. 128 means 128-bit
### encryption). The values below are the defaults.
# min-encryption = 0
# max-encryption = 256

 

5、安装服务

 

sc create SVNService binpath= "C:\Program Files\Subversion\bin\svnserve.exe --service -r E:\repository" displayname= "SVNService" depend= Tcpip start= auto
  • 大小: 1.4 MB
分享到:
评论

相关推荐

    win下部署SVN服务器

    在Windows环境下部署SVN(Subversion)服务器是一个常见的版本控制系统设置任务,对于团队协作和代码管理至关重要。SVN提供集中式的版本控制,使得开发者能够跟踪和管理代码的修改历史,协同工作并解决冲突。以下是...

    windows 平台下SVN服务器部署安装

    在Windows平台上部署SVN(Subversion)服务器是一个关键任务,特别是在团队协作的软件开发环境中。以下将详细阐述如何在Windows Server 2003 32位操作系统上安装和配置VisualSVN Server。 首先,我们需要下载SVN...

    eclipse svn 以及windows下的svn服务器

    Eclipse SVN和Windows下的SVN服务器是开发人员在进行版本控制时不可或缺的工具。本文将详细介绍如何在Eclipse中安装和使用SVN,以及如何在Windows环境下设置SVN服务器。 首先,Eclipse是一款广泛使用的Java集成开发...

    win下部署SVN服务器.doc

    本文旨在指导如何在Windows操作系统环境下部署SVN服务器,包括Apache服务器的安装与配置、SVN服务器的安装与配置以及相关辅助工具的使用。 #### 二、Apache服务器的安装与配置 1. **下载与安装** - 下载`apache_...

    Windows下搭建SVN服务器

    ### Windows下搭建SVN服务器详解 #### 一、前言 在软件开发过程中,版本控制系统是必不可少的工具之一。Subversion(简称SVN)作为一款经典的集中式版本控制系统,在项目管理和团队协作方面发挥着重要作用。本文将...

    windows2003中SVN服务器异机同步、自动部署Java项目全流程

    在Windows 2003环境下,使用SVN(Subversion)服务器进行异机同步和Java项目的自动部署是一项高效且规范的开发流程管理方法。这里我们将详细介绍如何设置SVN服务器,实现代码的自动更新、编译和部署,以及如何利用...

    svn服务器的搭建、部署

    以下将详细介绍如何在Windows和Linux环境下搭建和配置SVN服务器。 首先,我们来看Windows环境下的搭建步骤: 1. **安装软件**: - 安装Apache HTTP Server(如Apache2.059):Apache作为SVN服务的Web服务器,负责...

    svn服务安装和部署

    ### 部署SVN仓库 1. **创建仓库**:在VisualSVN Server Manager中,点击“新建仓库”;在Linux上,可以使用`svnadmin create /path/to/repo`命令创建仓库。 2. **设定仓库权限**:根据项目需求,为用户和组分配读写...

    Windows下SVN服务器的部署与管理

    在Windows环境下,部署和管理Subversion(SVN)服务器是一项重要的任务,特别是在团队协作开发中。Subversion是一种版本控制系统,它允许用户跟踪和控制代码库的更改,便于多人协同工作。下面将详细介绍如何在...

    Windows下的SVN服务器 VisualSVN Server

    VisualSVN Server将Subversion与Apache服务器集成,并进行了封装,使得在Windows环境下部署和管理SVN服务器变得更加便捷。 VisualSVN Server提供的主要组件包括: 1. **VisualSVN**:这是一个Visual Studio的插件...

    Windows下svn部署.pdf

    在Windows环境下,Subversion...在Windows环境下部署SVN服务器,可以极大地提升软件开发团队的协作效率,通过版本控制保证代码的质量和一致性。了解并掌握上述步骤,将有助于你在实际工作中有效地管理项目和代码库。

    原创:Windows下SVN代码服务器安装部署步骤(V1.1)

    ### 原创:Windows 下 SVN 代码服务器安装部署步骤 (V1.1) #### 概述 本文档旨在提供一套完整的指南,帮助用户在Windows环境下成功安装与配置SVN(Subversion)版本控制系统服务器。Subversion是一款广泛使用的...

    华为云端搭建SVN服务器.docx

    在华为云上搭建SVN服务器是一项关键的任务,用于集中管理和版本控制代码和其他文件。以下是详细的步骤和知识点: 1. **购买并登录Windows弹性云服务器**: - 弹性云服务器(ECS)是华为云提供的可伸缩计算资源,包含...

    Windows_svn部署

    Windows_svn部署Windows_svn部署

    windows系统下SVN服务端安装包

    标题中的“Windows系统下SVN服务端安装包”指的是在Windows操作系统上用于部署Subversion(SVN)服务器的软件包。Subversion是一个流行的版本控制系统,它允许用户跟踪和管理文件和目录的更改历史,这对于软件开发...

    jenkins+svn+maven+java-配置+安装+部署(windows版)

    ### Jenkins + SVN + Maven + Java 自动化部署详解(Windows版) #### 一、Jenkins 安装与配置 **1. Jenkins 安装** - **下载安装**: 首先,从官方网址 (https://jenkins.io/download/) 下载最新的Jenkins安装包...

    CMO在服务器部署SVN服务端及相关配置

    CMO在服务器部署SVN服务端及相关配置是一个IT行业中非常重要的知识点。本节将详细介绍如何在服务器上部署SVN服务端,并进行相关的配置。 首先,我们需要了解什么是SVN。SVN(Subversion)是一种版本控制系统,....

Global site tag (gtag.js) - Google Analytics