On main are changes which have been made so it works on my server. The individual changes are in individual branches, and PR's to the original are opened on the ones I think make sense.
- Only checks for files with mtime === -3600
- Only works with MariaDB
This script lists files that can not be fixed by the solvable_files.sh
script. For example files on an external storage.
It compares files found in the database with files found in on the server's file system and prints the diff.
./unsolvable_files.sh <data_dir> <mysql|pgsql> <db_host> <db_user> <db_pwd> <db_name>
$ ./unsolvable_files.sh "$PWD/data/" mysql localhost nextcloud password nextcloud
local::/home/louis/nextcloud_external//(test).md
local::/home/louis/nextcloud_external//test".md
local::/home/louis/nextcloud_external//test.md
$ ./unsolvable_files.sh "$PWD/data/" mysql localhost nextcloud password nextcloud | wc -l
3
This script looks for problematic files on the server's file system
The default behavior is to simply list the solvable files.
To fix the files mtime on both the file system and the database, you have to call the script with the fix
argument at the end of the argument list.
The mtime from the file system and from the database must be equal to proceed.
To find the file's mtime from the database, a username is derived from the file's path, this allow use to find the correct storage, file on the database.
Group folders are handled specially by checking if the username equal __groupfolders
.
- The file's mtime will be updated with the
touch
command. - An
occ files:scan
will be run on the file to update the database.
- Files that are not present on the server's file system will not be fixed. For example files on an external storage.
./solvable_files.sh <data_dir> <mysql|pgsql> <db_host> <db_user> <db_pwd> <db_name> [<fix|list>] [<scan|noscan>]
$ ./solvable_files.sh "$PWD/data/" mysql localhost nextcloud password nextcloud list noscan
/home/louis/workspace/nextcloud/server/data/__groupfolders/1/(test).md
/home/louis/workspace/nextcloud/server/data/__groupfolders/1/test".md
/home/louis/workspace/nextcloud/server/data/__groupfolders/1/test.md
/home/louis/workspace/nextcloud/server/data/alice/files_trashbin/files/storage trash.d1639576034/(test).md
/home/louis/workspace/nextcloud/server/data/alice/files_trashbin/files/storage trash.d1639576034/test".md
/home/louis/workspace/nextcloud/server/data/alice/files_trashbin/files/storage trash.d1639576034/test.md
/home/louis/workspace/nextcloud/server/data/admin/files/welcome.txt
/home/louis/workspace/nextcloud/server/data/admin/files/shared test/(test).md
/home/louis/workspace/nextcloud/server/data/admin/files/shared test/test".md
/home/louis/workspace/nextcloud/server/data/admin/files/shared test/test.md
$ ./server/mtime_scripts/solvable_files.sh "$PWD/server/data/" mysql localhost nextcloud password nextcloud list noscan | wc -l
10