[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

access permission on setting up Subversion server. Help!

From: Mark Grosberg <mark_at_nolab.conman.org>
Date: 2003-05-09 23:49:14 CEST

> As the INSTALL guide said, there exist permission problem. So what is
> the permisiion problem?
> And how can I set the correct permision (which file(s) or directories)?

The files in your SVN repository /svn/repos/L3 (and the directory L3) must
be readable and writable by the user Apache runs as.

Even though you start Apache as root, the worker tasks will change their
user id to the user and group specified by the User and Group directives
in your apache config file.

You should make your repository files owned by that user/group. If for
example, the user is svn and the group is devel, the command:

  chown -R svn /svn/repos/L3
  chgrp -R devel /svn/repos/L3

would do the trick. On Linux, you can combine them typically to:

  chown -R svn.devel /svn/repos/L3

will do it as well.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri May 9 23:50:02 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.