-
I was a once-contributor to the original Paperless project, and have finally started to explore My prior install was on bare metal (actually in an LXC container, but basically the same thing), and I've switched to Docker since it appears that's the primary supported method for Paperless-NG. I've got things starting up correctly, and have copied all the original folders (
I get tons of errors about gpg returning a non-zero status:
There appears to be one warning like this (I assume) for every file it's trying to index. Perhaps this will all work out fine when it finishes, but this seems like an error. Is there a better method I should be taking? Following up, this was the resulting error:
I copied the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I was able to work around this by using the document decryption tool from the original paperless: $ /usr/bin/python3 /home/paperless/paperless/src/manage.py change_storage_type gpg unencrypted (Note for anyone that runs into this, there was an error for me at line 96 of the decryption tool, and I had to change it to: if os.path.isfile(path):
os.unlink(path) After this, the reindexing worked! |
Beta Was this translation helpful? Give feedback.
I was able to work around this by using the document decryption tool from the original paperless:
(Note for anyone that runs into this, there was an error for me at line 96 of the decryption tool, and I had to change it to:
After this, the reindexing worked!