Originally created by: cmpilato
[Was http://svnbook.red-bean.com/trac/ticket/86]
{{{
Date: Thu, 27 Sep 2007 00:40:25 +0200
From: "Zdenek Wagner" <zdenek.wagner@gmail.com>
To: svnbook-dev@red-bean.com
Subject: Running subversion under xinetd
Hello,
the svnbook contains instructions how to run subversion under inetd
but instructions for using xinetd are missing. Please add the
following information which I tested on my computer:
========================
svnserve via xinetd
xinetd is a replacement of the inet daemon which is used mainly in
Redhat based distributions. In order to configure svnserve for xinetd,
create file /etc/xinetd.d/svn vith the following contents:
# default: on
# description: Subversion server for the svn protocol
service svn
{
disabled = no
port = 3690
socket_type = stream
protocol = tcp
wait = no
user = subversion
server = /usr/local/bin/svnserve
server_args = -i -r /path/to/subversion/repositories
}
Be sure that your /etc/services contains the definition of the prot
for svn as described in the section "svnserve via inetd". Without
proper setting the daemon will not start.
In Redhat based distributions you can issue the command:
chkconfig --add svn
You will then be able to switch the server on and off from the
graphical configuration tools.
}}}
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: cmpilato
(No comment was entered for this change.)
Labels: Milestone-whenever
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: cmpilato
(No comment was entered for this change.)
Owner: ---
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: cmpilato
Content added in [r4340].
Labels: -Milestone-whenever Milestone-en-1.8
Status: Fixed