0

I want to use svn on my root server so I performed following steps:

  1. install subversion using yast
  2. add group svn
  3. add a user with group svn
  4. create svn repo using svnadmin create
  5. chgrp on repo folder
  6. Checkout with subclipse

My repo is now located in /root/opt/svn/myproject

I want to access via http. So this is my subversion.conf

<Location /opt/svn> DAV svn SVNParentPath /opt/svn SVNListParentPath On # Limit write permission to list of valid users. # Require SSL connection for password protection. # SSLRequireSSL AuthType Basic # Message to give to the committer AuthName "Write access requires a password" # File listing users with write (commit) access AuthUserFile /srv/svn/user_access/svn_passwdfile Require valid-user </Location> 

I followed this tutorial: http://www.korecky.org/?p=168&langswitch_lang=en

How can I access my repo? What is the correct url?

2
  • What has PuTTY to do with that? I thought you wanted to check it out via subclipse? Commented Aug 7, 2011 at 21:01
  • @mailq, many Windows SVN clients use putty(plink) for to build the SSH conection. Commented Aug 8, 2011 at 4:53

1 Answer 1

1

Have you read the docs about the repository URLs?

If you are expecting to connect via putty, then you probably want to use a url like.

svn+ssh://full.domain.name/full/path/to/repository 

Unless your repository actually is /my.Project, then I suspect your path is wrong.

1
  • My repo is on root/opt/svn/myProject Commented Aug 8, 2011 at 7:33

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.