Skip to main content
Email Password   helpLost your password?

Introduction

I decided to write this article in order to save time to those people who must install and set up Subversion on Windows machines, having no idea of how to do that and no time to search for any piece of information on the internet.

It took two days for me and enormous efforts to understand what is going on with Subversion and how to make it work. I asked my friend who is working on a parallel project in the Computer Science department of my university how much time he spent setting up SVN with Apache on their Linux server. He told it took him one month!!! :) Well, no comments.

Let's get down to business, we don't have much time.

Prerequisites

First of all, we need to download SVN and Apache.

Subversion

Install Subversion to any directory, then add the bin sub-directory to the environment path. For example: if we installed svn into C:\programs\programming\svn-win32-1.4.0, then go to Start -> Settings -> Control Panel -> System.

Click on the Advanced tab and choose Environment Variables.

subversion_apache_system_properties.jpg

subversion_apache_environment_variables.jpg

subversion_apache_path.jpg

The next step is to create a directory which will be a root for all the repositories of our source control.

Apache server

Now, we can install the Apache server.

When the installation is finished, go to the bin directory within the Subversion installation, find two files with extension *.so, and put them into the (Apache)/modules directory. The files are mod_authz_svn.so and mod_dav_svn.so.

Go to the conf sub-directory within the Apache installation directory and open the httpd.conf file in any text editor.

Add the following lines:

LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

After that, add the following block:

<Location /svn/>
    DAV svn
    SVNParentPath c:/svnroot/ #specify the root for repositories
    #http://www.archivesat.com/CVS_developers_help/thread45479.htm 
        post which discuss why you need to specify /svn/ and not /svn
    
    #list repositories
    SVNListParentPath on 
    # our access control policy
    AuthzSVNAccessFile bin/apachesvnauth #authentication file 
                   #path where policy is written for each user   

    AuthType Basic #type of authentication
    AuthName "Subversion repository" #the name of the authentication 
                                      #and the name of repository realm
    AuthUserFile bin/apachesvnpasswd #the name of the 
                                      #file with user passwords values
    Require valid-user #permit to log-in only for authorized users
</Location>

Building the password file

We use the AuthUserFile bin/apachesvnpasswd entry, which tells Apache to find the file with passwords in the bin sub-directory within the Apache installation directory. We need to build this file. Go to that directory using the command prompt and type the following command:

htpasswd.exe -c apachesvnpasswd user1

You will be prompted to enter the password for user user1, and the file apachesvnpasswd will be created in the bin sub-directory. In order to add another user, just type the same command without -c and provide the name of another user.

htpasswd.exe -c apachesvnpasswd user2

Note: only the users we created will be able to log into our repositories because we used the Require valid-user parameter.

Building the authentication file

The following block is an example of the authentication file:

[/] * = r [test1:/] user1 = rw user2 = [test2:/] user1 = r user2 = rw

Explanations

Run Apache

Theoretically, we are at the stage when we can run Apache and test our Subversion. So start Apache, open the web browser and write something like this: http://localhost:8080/svn/.

If you don't get any errors, you will be prompted to type the username and password.

subversion_apache_username.jpg

Provide the username you created and the password, and press OK. You will see the following page:

subversion_apache_repo_list.jpg

References

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
Generalcannot list repositories or files! Pin
w00078782k
9:14 3 Jul '09  
GeneralRegarding the block Pin
mpacaon
21:23 29 Oct '08  
GeneralRe: Regarding the block Pin
Kisilevich Slava
23:51 29 Oct '08  
GeneralRe: Regarding the block Pin
mpacaon
16:02 2 Nov '08  
QuestionConfused in doing the "Building the authentication file" step Pin
mpacaon
19:36 28 Oct '08  
AnswerRe: Confused in doing the "Building the authentication file" step Pin
Kisilevich Slava
3:05 29 Oct '08  
GeneralRe: Confused in doing the "Building the authentication file" step Pin
mpacaon
21:18 29 Oct '08  
QuestionWeird authentication issue, but only using Tortoise Pin
Regalarius
20:47 9 Jul '08  
AnswerRe: Weird authentication issue, but only using Tortoise Pin
Kisilevich Slava
21:16 9 Jul '08  
GeneralComments on same lines as config causes Apache to fail to start Pin
Troy Simpson
20:33 1 May '08  
GeneralRe: Comments on same lines as config causes Apache to fail to start Pin
Kisilevich Slava
20:40 1 May '08  
GeneralSubversion is showing too much Pin
ibgvfdfyoroqrf
17:46 1 Jun '07  
GeneralRe: Subversion is showing too much Pin
Kisilevich Slava
22:11 1 Jun '07  
GeneralRe: Subversion is showing too much Pin
ibgvfdfyoroqrf
8:32 4 Jun '07  
GeneralRe: Subversion is showing too much Pin
Kisilevich Slava
10:39 4 Jun '07  
GeneralRe: Subversion is showing too much Pin
stanhughes
10:55 13 Jun '07  
GeneralRe: Subversion is showing too much Pin
VanbrabantP
3:42 31 Oct '07  
Generalmod_authz_svn error Pin
Dmitry.S.Golub
22:31 26 Sep '06  
GeneralRe: mod_authz_svn error Pin
Kisilevich Slava
0:22 27 Sep '06  
GeneralRe: mod_authz_svn error Pin
Dmitry.S.Golub
21:21 27 Sep '06  
GeneralRe: mod_authz_svn error Pin
tlv77
8:29 9 Oct '06  
GeneralRe: mod_authz_svn error Pin
Kisilevich Slava
8:56 9 Oct '06  
Generalstep by step Pin
SteveKing
20:56 24 Sep '06  
GeneralRe: step by step Pin
Kisilevich Slava
22:39 24 Sep '06  
GeneralRe: step by step Pin
emanuele.vicari
6:25 9 Oct '06  


Last Updated 6 Oct 2006 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009