From 8c8cf4a4afa20e884c732d3f2d0cfa13acd31e62 Mon Sep 17 00:00:00 2001 From: smoke007 Date: Mon, 14 Jul 2025 15:31:47 -0400 Subject: [PATCH] Updated readme.md - Added details to fix "database locked" error for anyone using a cifs share for their library (#197) Added details to fix "database locked" error for anyone using a cifs share for their library under volumes. nobrl option needs to be added to the mount line in your fstab file. e.g. //192.168.1.1/Books /media/books cifs credentials=.smbcredentials,uid=1000,gid=1000,iocharset=utf8,nobrl --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 55dc195..a721fcc 100644 --- a/readme.md +++ b/readme.md @@ -170,6 +170,7 @@ volumes: - /your/local/path:/cwa-book-ingest - /cwa/config/path/app.db:/auth/app.db:ro ``` +**Note** - If your library volume is on a cifs share, you will get a "database locked" error until you add **nobrl** to your mount line in your fstab file. e.g. //192.168.1.1/Books /media/books cifs credentials=.smbcredentials,uid=1000,gid=1000,iocharset=utf8,**nobrl** - See https://github.com/crocodilestick/Calibre-Web-Automated/issues/64#issuecomment-2712769777 Mount should align with your Calibre-Web-Automated ingest folder.