Svn: E160043: expected FS format between '1' and '4'; found format "6"

We get an error when my CLIENT receives a list of our SERVER SERVER repository, for example:

D:\temp>svn list svn://192.168.1.2/d:/svnrepository/r0 svn: E160043: Unable to connect to a repository at URL 'svn://192.168.1.2/d:/svnrepository/r0' svn: E160043: Expected FS format between '1' and '4'; found format '6' 

and CLIENT has svn version 1.8.3 (r1516576)

 D:\temp>svn --version svn, version 1.8.3 (r1516576) compiled Aug 27 2013, 19:43:20 on x86-microsoft-windows 

and our version of svn and svnandmin for SERVER are the same:

 d:\>svnadmin --version svnadmin, version 1.8.3 (r1516576) compiled Aug 27 2013, 19:43:20 on x86-microsoft-windows d:\>svn --version svn, version 1.8.3 (r1516576) compiled Aug 27 2013, 19:43:20 on x86-microsoft-windows 

What is the problem in this lane? (apologize to poor English)

+4
source share
2 answers

Your svn client, even it has been upgraded to 1.8, declares itself to be an older version (1.6?)

You must restart Windows at least once before using this client.

+1
source

I had the same problem. My subversion server started when I updated it, so the svnserve file was never updated. SvnServe allows you to use the svn:// protocol. These steps must be performed on your server.

1) Stop the svnserve.exe service (or kill your process)

2) Removing a subversion

3) Install the latest subversion client. I used Subversion 1.8.3 (Windows 64-bit), found at http://www.collab.net/downloads/subversion

4) Start the svnserve.exe service

+1
source

Source: https://habr.com/ru/post/1502017/


All Articles