无法打开属性数据库
我使用的是 Windows XP,我想要一个存储库,所以我使用 Apache Server
在我的 Apache 服务器内创建了它,为什么我收到此错误?
下创建了我的存储库,
我已经使用它在 httpd-dav.conf Alias /sites "C:/Program Files/Apache Software Foundation/Apache2.2/sites"
<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/sites">
Dav On
Order Allow,Deny
Allow from all
AuthType Digest
AuthName DAV-upload
Options Indexes
AuthUserFile "C:/Program Files/Apache Software Foundation/Apache2.2/user.passwd"
AuthDigestProvider file
# Allow universal read-access, but writes are restricted
# to the admin user.
<LimitExcept GET OPTIONS>
require user admin
</LimitExcept>
</Directory>
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
请告诉我如何解决这个问题?
I am using Windows XP , i want to have a repository , so i created it using Apache Server
Inside my Apache server , why i am getting this error ??
I have used this to create my repository under httpd-dav.conf
Alias /sites "C:/Program Files/Apache Software Foundation/Apache2.2/sites"
<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/sites">
Dav On
Order Allow,Deny
Allow from all
AuthType Digest
AuthName DAV-upload
Options Indexes
AuthUserFile "C:/Program Files/Apache Software Foundation/Apache2.2/user.passwd"
AuthDigestProvider file
# Allow universal read-access, but writes are restricted
# to the admin user.
<LimitExcept GET OPTIONS>
require user admin
</LimitExcept>
</Directory>
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open the lock database. [500, #400]
[Sat Oct 01 15:44:07 2011] [error] [client 127.0.0.1] Could not open property database. [500, #1]
please tell me how to resolve this ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用的是Windows 2008。
我发现 \conf\extra 文件夹中
DavLockDB
的默认条目是:/Apache Software Foundation/Apache2.2/var/DavLock
但是,没有
var 在 Windows 安装下创建的目录。
创建 var 目录似乎可以解决这个问题。
I am using Window 2008.
What I found was that the default entry for the
DavLockDB
in the \conf\extra folder was:/Apache Software Foundation/Apache2.2/var/DavLock
However, there was no
var
directory created under the Windows install.Creating the
var
directory seemed to solve it.