From: Alberto S. <has...@gm...> - 2025-05-15 14:12:02
|
Hello, Joe eXistDB 6.3.0, running on Docker. Dockerfile below. Hope this helps. Thanks FROM alpine:latest AS build WORKDIR /autodeploy RUN apk --no-cache add zip COPY lexmart-restxq-api/ ./ RUN zip -r lexmart-restxq-api.xar * FROM existdb/existdb:6.3.0 AS production WORKDIR /exist COPY docker/exist/conf.xml etc/conf.xml COPY docker/exist/jetty/lib etc/webapp/WEB-INF/lib COPY docker/exist/jetty/web.xml etc/webapp/WEB-INF/web.xml COPY --from=build /autodeploy/*.xar autodeploy/ COPY docker/exist/autodeploy/*.xar autodeploy/ EXPOSE 8080 On Thu, May 15, 2025 at 1:23 PM Joe Wicentowski <jo...@gm...> wrote: > Hi Alberto, > > For troubleshooting, which version of eXist, Java, OS, etc.? > > Joe > > Sent from my iPhone > > > On Thu, May 15, 2025 at 6:28 AM Alberto Simões <has...@gm...> > wrote: > >> Hello >> >> Triggering a full backup, I am getting this error: >> >> ... >> DOCUMENT: 108000 of 111595 >> DOCUMENT: 109000 of 111595 >> DOCUMENT: 110000 of 111595 >> DOCUMENT: 111000 of 111595 >> DOCUMENT: 111595 of 111595 >> ---------------------------------------------- >> RESOURCE_ACCESS_FAILED: >> Failed to access document data >> Document ID: 170957 >> >> What can I do to: >> - understand what is the problematic document >> - try to understand if I had data lost >> - fix it :-) >> >> Thank you in advance. >> >> -- >> Alberto Simões >> _______________________________________________ >> Exist-open mailing list >> Exi...@li... >> https://lists.sourceforge.net/lists/listinfo/exist-open >> > -- Alberto Simões |