Menu

#3 Add documentation for running svnserve under xinetd

en-1.8
Fixed
nobody
None
Low
Enhancement
2013-01-18
2008-10-22
Anonymous
No

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.
}}}

Discussion

  • Anonymous

    Anonymous - 2011-07-06

    Originally posted by: cmpilato

    (No comment was entered for this change.)

    Labels: Milestone-whenever

     
  • Anonymous

    Anonymous - 2013-01-18

    Originally posted by: cmpilato

    (No comment was entered for this change.)

    Owner: ---

     
  • Anonymous

    Anonymous - 2013-01-18

    Originally posted by: cmpilato

    Content added in [r4340].

    Labels: -Milestone-whenever Milestone-en-1.8
    Status: Fixed

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.