You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Kenneth McDonald <ke...@sbcglobal.net> on 2004/05/18 07:24:26 UTC

Where to start digging for a problem?

I've (attempted to) set up svn and an svn server under OS X 10.3; 
however,
when I attempt to

	svn import svtest svn://localhost/Users/svnuser/testrepos -m "initial 
test import"

I get the generic error:

	svn: Malformed network data

which could be originating in a problem anywhere, for all I know. If 
anyone can
suggest how to track down more informative error messages, I'd 
appreciate it.

For what it's worth, here is what I've done:

1) Set up a "svnuser" account.
2) As that user, successfully created a svn repository called 
"testrepos"
in the svnuser home directory. (The actual users will be 'real' 
accounts:
in retrospect, 'svnuser' was probably a bad username).
3) Created file 'svn' in /etc/xinetd.d, with the following contents:
service svn
{
         disable = no
         socket_type     = stream
         wait            = no
         user            = svnuser
         server          = /usr/local/subversion/bin/svnserve
         server_args     = -i
         groups          = yes
         flags           = REUSE IPv6
}
4) Edited the config files in the testrepos/conf; in particular, I 
created
a "passwords" file for user authentication, and edited svnserve.conf
to point to it.
5) Under sudo, ran '/sbin/service svn start', with no obvious errors.
6) Finally, as myself, attempted the command back at the beginning of
this posting, with the stated result.

As you might tell, I'm a complete newbie at subversion. Thanks for
any help you can give, and for your patience :-)

Ken McDonald


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org