You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by re...@gsk.com on 2006/07/07 13:27:29 UTC

xinetd[1126]: Deactivating service svn due to excessive incoming connections.

I get the following over and over in my /var/log/messages:

Jul  7 07:40:15 rtpsalxv0003 xinetd[1126]: Deactivating service svn due to 
excessive incoming connections.  Restarting in 30 seconds.
Jul  7 07:40:45 rtpsalxv0003 xinetd[1126]: Activating service svn
Jul  7 07:40:47 rtpsalxv0003 xinetd[1126]: Deactivating service svn due to 
excessive incoming connections.  Restarting in 30 seconds.
Jul  7 07:41:17 rtpsalxv0003 xinetd[1126]: Activating service svn

here's my config...

[root]#  more /etc/xinetd.d/svnserve
# description: Subversion server process
#
#
service svn
{
        flags                   = REUSE
        socket_type             = stream
        wait                    = no
        user                    = cixscm
        server                  = /usr/local/bin/svnserve
        server                  = 
/local/apps/pkg/current/subversion/bin/svnserve
        server_args             = -i -r /local/apps/svn/repositories
        log_on_failure          += USERID
        disable                 = no
        instances               = UNLIMITED

}

Any thoughts?

-Reid