Skip to content

Commit

Permalink
Merge branch 'Shawn8901-patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed Oct 31, 2023
2 parents 9f474e3 + 2241ad4 commit 8514120
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,21 @@ app:
occ config:system:set memories.exiftool.tmp --value /path/to/temp/dir
```

## Issues with NixOS

### Background index fails

When using the NixOS modules system for installation the indexer may fail on execution. In case the error is either `perl not found` or `failed to run exiftool: ...` it might be that the created `nextcloud-cron` services does not have access to a perl interpreter.

In that case adding perl to the path of the `nextcloud-cron` service might solve the issue.
It can be archived by adding the following snippet to the `configuration.nix`

```nix
systemd.services.nextcloud-cron = {
path = [pkgs.perl];
};
```

## Reverse Geocoding (Places)

You need to have a MySQL / MariaDB / Postgres database for reverse geocoding to work. SQLite is not supported.
Expand Down Expand Up @@ -118,9 +133,9 @@ DROP INDEX IF EXISTS memories_parent_mimetype;

The reset will clean up all data associated with Memories. While this is safe and will not delete your files, it can sometimes have unintended side effects, such as some files appearing as duplicates in the mobile apps when you reinstall. Try running `occ memories:index --force` before attempting a reset.

### Moving from x86 to ARM or vice versa
### Instruction set change

In this case you need to reset the paths to the architecture specific binaries.
If you move from x86 to ARM or vice versa, you need to reset the paths to the architecture specific binaries.

```bash
occ config:system:delete memories.exiftool
Expand Down

0 comments on commit 8514120

Please sign in to comment.