




















http://www.robertkan.net/blog/2009/05/15/failed-to-load-module-for-fs-type-bdb-in-tortoisesvn-16x
Today I’ve met small problem with my beloved TortoiseSVN client. I was in need to access some old repository stored locally on my computer – for newer projects I’m usingdedicated Debian based SVN server. Anyway, trying to access to my local repository via TortoiseSVN has resulted with following message:
Failed to load module for FS type 'bdb'
After quick Googling it appeared that from branch 1.6.x, TortoiseSVN doesn’t support local file:/// repositories based on BDB and they need to be converted to new FSFS format using ‘svnadmin’ command line tool as it is explained inSVNBook. As ‘svnadmin’ tool is not present in TortoiseSVN, some additional work is needed.
Finally I did in following way:
svnadmin dump c:\FullPathToOldRepository > dumpfile.bin
svnadmin load c:\FullPathToNewRepository < dumpfile.bin
That is, it worked for me like a charm.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。