How do I setup subversion as forked process using ubuntu server 9.10 and subversion 1.6?

I've tried svnserve -i but the svnbook says this is wrong.

I followed the svnbook which told me to tell me

/etc/services

svn           3690/tcp   # Subversion
svn           3690/udp   # Subversion

/etc/inetd.conf

svn stream tcp nowait svnowner /usr/bin/svnserve svnserve -i

but no svnserve process gets started ??????? th Any help would be greatly appriciated. Very confused!!!

I was told forked processes are safer since they will finish off before subversion quits

link|improve this question

44% accept rate
Or "Why don't I see deamon processes when I've setup inetd to run the process on demand?" – wizard Oct 20 '09 at 21:29
feedback

1 Answer

up vote 3 down vote accepted

You won't see a svnserve process using inetd until a connection is made to SVN at port 3690.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.