Error Copying Backup: InvalidObjectName: null
-
@robi Yes, that seems to have been the problem -- I turned off encryption and it seems to have worked out. Even manual backups were failing, just changed it back and it failed again. This seems to have happened right around the upgrade to 6.1.1. I'll have to dig into the issue more. I really appreciate your help!
-
@jlx89 In rsync mode + encryption, there are filename length limitations - https://docs.cloudron.io/backups/#encryption . You can run the command below to see if you have large filenames (you have to run this in Nextcloud's web terminal):
cd /app/data find . -type f -printf "%f\n" | awk '{ print length(), $0 | "sort -rn" }' | less
-
@girish Thanks! This ended up being a combination of issues I believe. So throttling on the backups due to using rsync, encryption, and file names ended up being too long (only a few) So I've changed some settings around and it seems to have been resolved. I appreciate the help from both @robi and yourself.