| Summary: | WebDAV - httpd.conf typo | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Web Server 2 | Reporter: | Libor Fuka <lfuka> |
| Component: | httpd | Assignee: | Mladen Turk <mturk> |
| Status: | CLOSED EOL | QA Contact: | Libor Fuka <lfuka> |
| Severity: | high | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 2.0.1 | CC: | jclere, jdoyle, jstefl, pslavice, rsvoboda |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Windows | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: |
Previously in JBoss Enterprise Web Server, the location of the WebDAV lock database was incorrect in the <filename>httpd.conf</filename> file used for the mod_dav_fs configuration on Solaris and Microsoft Windows.
In JBoss Enterprise Web Server 2.1, the incorrect <command>DAVLockDB var/run/lockdb</command> part of the configuration is now corrected to <command>DAVLockDB run/lockdb</command> and now works as expected.
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2019-06-13 08:00:10 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
http://pkgs.devel.redhat.com/cgit/rpms/httpd/tree/httpd.conf?h=jb-ep-6-xb just needs a simple fix. Please fix this bug in EWS 2.1.0 ER1. Its simple fix. Fixed in the dist git. EWS 2.1.0 will have run/lockdb Note: This fix should be only for Solaris and Windows build not for RHEL. Sure. I understood that. Fix was applied only to the multiplatform branch. Verified in EWS 2.1.0-ER2 |
Description of problem: httpd.conf typo for Solaris and Windows for mod_dav_fs configuration: <IfModule mod_dav_fs.c> # Location of the WebDAV lock database. DAVLockDB var/run/lockdb </IfModule> This should needs to be changed to: <IfModule mod_dav_fs.c> # Location of the WebDAV lock database. DAVLockDB run/lockdb </IfModule> Version-Release number of selected component (if applicable): 2.0.1 - Solaris and Windows If its set to var/run/lockdb using mod_dav shows these errors in httpd error_log: [Wed Oct 23 07:47:35 2013] [error] [client 127.0.0.1] Could not MOVE/COPY /davTest/hello.txt due to a failed precondition on the destination (e.g. locks). [500, #0] [Wed Oct 23 07:47:35 2013] [error] [client 127.0.0.1] The locks could not be queried for verification against a possible "If:" header. [500, #0] [Wed Oct 23 07:47:35 2013] [error] [client 127.0.0.1] Could not open the lock database. [500, #400] [Wed Oct 23 07:47:35 2013] [error] [client 127.0.0.1] (2)No such file or directory: Could not open property database. [500, #1]