I'm trying to start svnserve via inetd and when running:
My /etc/inetd.conf
How can I tell if
Or is the problem related to file ownership or access control?
I don't have any authentication enabled at the moment AFAICT.
svn list svn://192.168.1.48/var/svn/myproject
Code:
svn: E000061: Can't connect to host '192.168.1.48': Connection refused
My /etc/inetd.conf
svn stream tcp nowait svn /usr/local/bin/svnserve -i -r /var/svn
ls -al /var/svn/myproject
:-
Code:
drwxr-xr-x 6 www www 512 Jun 14 15:18 .
drwxr-xr-x 3 root wheel 512 Jun 14 17:26 ..
-rw-r--r-- 1 www www 246 Jun 14 15:18 README.txt
drwxr-xr-x 2 www www 512 Jun 14 15:18 conf
drwxr-sr-x 6 www www 512 Jun 14 15:18 db
-r--r--r-- 1 www www 2 Jun 14 15:18 format
drwxr-xr-x 2 www www 512 Jun 14 15:18 hooks
drwxr-xr-x 2 www www 512 Jun 14 15:18 locks
How can I tell if
svnserve
is getting launched from inetd
?Or is the problem related to file ownership or access control?
I don't have any authentication enabled at the moment AFAICT.