檢視已經建立的svn庫格式是 FSFS 還是 VDFS 的?

weixin_30924079發表於2020-04-04

因為有些svnadmin命令(例如svnadmin hotcopy --incremental  ;svanadmin pack),只能用於FSFS格式庫檔案。需要知道當前庫的檔案格式是什麼。

例如:Subversion(SVN)備份問題(用 svnadmin hotcopy 支援增量備份) https://www.cnblogs.com/johnphan/p/9282662.html

使用 svnadmin info 命令可以檢視庫檔案的格式設定。

要注意的是,更新日誌上說1.9.0版本才支援這個功能,

Version 1.9.0
(5 Aug 2015, from /branches/1.9.x)
http://svn.apache.org/repos/asf/subversion/tags/1.9.0
    * svnadmin info: new subcommand to print info about a repository

使用例子:

E:\Repositories>svnadmin info aa
Path: aa
UUID: 7896e1b3-c25b-dc44-bc7b-5e1bd20f2010
Repository Format: 5
Compatible With Version: 1.8.0
Repository Capability: mergeinfo
Filesystem Type: fsfs
Filesystem Format: 6
FSFS Sharded: yes
FSFS Shard Size: 1000
FSFS Shards Packed: 0/0
FSFS Logical Addressing: no
Configuration File: aa\db\fsfs.conf

(上面最後一行,提示不使用這個命令,在相應的目錄下,看到檔名: fsfs.conf,也可以做出判斷出來當前SVN庫的檔案型別是fsfs。這也許是最原始的方法。)

 

一般SVN建庫時,都是用FSFS格式。用其它格式的,都是2班的。2班的請留步,請問你為啥不用FSFS格式?

轉載於:https://www.cnblogs.com/johnphan/p/9282614.html

相關文章