Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting an error when trying to restore a svn repository taken from another machine. The error is

svnadmin: Dump stream contains a malformed header (with no ':') at

The dump was created on a subversion 1.5 server and I am loading to a new subversion 1.6 server. I was able to load several other repositories successfully to the new server. The new server is VisualSVN Server.

share|improve this question
I have the same problem. Did you find the solution ? – Luc M Oct 11 '11 at 20:46

4 Answers

as far as I know (I cannot see the dump..), this happens by piping the stdout and stderr into the dumpfile.

So you should dump again and only take stdout into your dump file.

Did you see the output while dumping the repository("Dumped revision 10", "Dumped Revision 11" ..etc)?

share|improve this answer
1  
The output doesn't contain any "Dumped revision..." messages. It does have Windows CR/LF pairs which I don't think should be a problem. – Chief A-G Aug 31 '09 at 18:29
can you show us the lines of the dump svn is complaining about? – Peter Parker Sep 1 '09 at 1:50

Try to cleanup your dump first

grep --binary-files=text -v '^* Dumped revision' ./repository.dump > ./repository.clear-dump

then try to load the new clean dump

svnadmin load /new/path/to/your/repository < ./repository.clear-dump
share|improve this answer

I had the same problem.

I wanted to import a dump file created on a Linux Box. The file has been "tar" and gzipped.

My file was a "tar.gz"

I used Winzip to uncompressed it and I couldn't upload it using cygwin.

Then I used cygwin command tar -xvzf to unzip it and I was able to load it into my new repository.

share|improve this answer

I wanted to add. I had the same problem as Luc M. My svnadmin load REPO_PATH < file.svn command just would not work, the error was cryptic, I could not work it out. So I tried using tar.exe from my Cygwin install again on the tar file that I had and presto it worked. I also had a tar file that had been zipped, but I used WinZip to extract the TAR and I think that corrupted it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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