CentOS, svnserve & xinetd
Posted: Tue Oct 15, 2019 3:14 pm
Tested on CentOS 7.6.1810. (subversion 1.7.14, xinetd 2.3.15)
Install the following packages:
1) Create a new subversion repository in "/opt/svn/test"
2) Then, copy/paste the following contents into "/etc/xinetd.d/svnserve":
That should be it.
Install the following packages:
Code: Select all
subversion xinetd
2) Then, copy/paste the following contents into "/etc/xinetd.d/svnserve":
Then, restart xinetd to load the new config:# default: on
# description: Subversion-Server für das svn-Protokoll
service svn
{
disable = no
port = 3690
socket_type = stream
protocol = tcp
wait = no
user = root
server = /usr/bin/svnserve
server_args = -i -r /opt/svn/
}
Code: Select all
$ systemctl restart xinetd