You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Peter Fodrek <pe...@stuba.sk> on 2009/03/25 16:44:36 UTC

svn+ssh Eclipse again

Dearn conference
I have repository  created by svn 1.5.5 
with location
svn+ssh://fuzzy.kasr.elf.stuba.sk/home/fodrek/repos/PlazmaCutter


on system where Eclispe 3.4.2 is installed  there is no commit allow even if 
svnserve.conf conatain anon-access =write

Eclipse logs as follows
*** Update
svn update "/home/peto/workspace/Plazma" -r HEAD --username "fodrek"
          /home/peto/workspace/Plazma
At revision 0
*** Ok (took 00:01.189)

*** Commit
svn commit "/home/peto/workspace/Plazma" -m "peto" --username "fodrek"
        A /home/peto/workspace/Plazma/.cproject
        A /home/peto/workspace/Plazma/.project
        A /home/peto/workspace/Plazma/peto.c
          Transmitting file data: /home/peto/workspace/Plazma/.cproject
          Transmitting file data: /home/peto/workspace/Plazma/.project
          Transmitting file data: /home/peto/workspace/Plazma/peto.c
svn: Commit failed (details follow):
svn: Network connection closed unexpectedly
*** Error (took 00:00.212)

and next commit fails as
*** Commit
svn commit "/home/peto/workspace/Plazma" -m "peto" --username "fodrek"
	A /home/peto/workspace/Plazma/.cproject
	A /home/peto/workspace/Plazma/.project
	A /home/peto/workspace/Plazma/peto.c
	  Transmitting file data: /home/peto/workspace/Plazma/.cproject
	  Transmitting file data: /home/peto/workspace/Plazma/.project
	  Transmitting file data: /home/peto/workspace/Plazma/peto.c
svn: Commit failed (details follow):
svn: Can't open '/home/fodrek/repos/PlazmaCutter/db/txn-current.tmp': No such 
file or directory
*** Error (took 00:00.220)


even if repository was made by

svnadmin create --fstype fsfs

Could anyone suggest whta to do to aalow commiting

Peter

Re: svn+ssh Eclipse again -solved

Posted by Peter Fodrek <pe...@stuba.sk>.
On Wednesday 25 March 2009 17:44:36 you wrote:
> Dearn conference
> I have repository  created by svn 1.5.5
> with location
> svn+ssh://fuzzy.kasr.elf.stuba.sk/home/fodrek/repos/PlazmaCutter

 I was used password ssh athentificaion and that was problem with svn 1.5.5 
When used rsa certificate authentification and used 1.5.6 svnserve with added 
Berkely DB support everything work great

-bash-2.05b$ svnserve  --version
svnserve, version 1.5.5 (r34862)
   compiled Mar  9 2009, 15:26:27

Copyright (C) 2000-2008 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet 
(http://www.Collab.Net/).

The following repository back-end (FS) modules are available:

* fs_fs : Module for working with a plain file (FSFS) repository.

-bash-2.05b$ /home/fodrek/my_progs/bin/svnserve  --version
svnserve, version 1.5.6 (r36142)
   compiled Mar 16 2009, 22:58:37

Copyright (C) 2000-2008 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet 
(http://www.Collab.Net/).

The following repository back-end (FS) modules are available:

* fs_base : Module for working with a Berkeley DB repository.
* fs_fs : Module for working with a plain file (FSFS) repository.

Cyrus SASL authentication is available.


Peter