如何检查我的 SVN 存储库正在使用什么文件系统?
我已经创建了我的存储库并且已经使用它一段时间了。我想检查它正在使用什么文件系统数据存储:Berkeley DB 或 FSFS。我不知道如何检查这个。我查看了 svnadmin、svnlook 等。有关如何执行此操作的任何提示吗?
I've already created my repository and have been using it for a while. I wanted to check what filesystem data store it is using: Berkeley DB or FSFS. I'm not sure how to check this. I've looked at svnadmin, svnlook, etc. Any hints on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查存储库中的
db/fs-type
文件:Check the
db/fs-type
file in your repository:假设您可以访问存储库所在的文件系统,那么您可以检查数据库子目录中是否有每个源文件的文件
抱歉不知道如何从客户端执行此操作
Assuming you can access the filesystem the repository is on then you can check if there is a file for each source file in the DB subdir
Sorry don't know how to do it from the client side
当然这是一个较旧的问题,但如果您有权访问服务器,则可以使用 svnadmin 检查详细信息。更改到包含存储库的目录,然后使用 svnadmin info REPOSITORY。将显示
文件系统类型
和文件系统格式
。适用于至少 1.9 版本的svnadmin
版本。# svnadmin 信息沙箱
Granted this is an older question, but if you have access to the server, it is possible to examine the details using
svnadmin
. Change to the directory containing the repositories, and then usesvnadmin info REPOSITORY
. TheFilesystem Type
andFilesystem Format
will be displayed. Works withsvnadmin
version from at least 1.9.# svnadmin info sandbox