Unraid 6.11.1 ERROR open /updater/data/updates.json: permission denied #230

Closed
opened 2025-11-20 04:21:45 -05:00 by saavagebueno · 1 comment
Owner

Originally created by @Michi202020 on GitHub (Oct 27, 2022).

Originally assigned to: @qdm12 on GitHub.

Hello,

in the new version of Unraid can i not start the container.
In the Protokoll i become this:
ERROR open /updater/data/updates.json: permission denied

What can i do?

Best Regards
Michael

Originally created by @Michi202020 on GitHub (Oct 27, 2022). Originally assigned to: @qdm12 on GitHub. Hello, in the new version of Unraid can i not start the container. In the Protokoll i become this: ERROR open /updater/data/updates.json: permission denied What can i do? Best Regards Michael
Author
Owner

@qdm12 commented on GitHub (Oct 28, 2022):

You need to change the permissions of your bind mounted directory on your host system, see the readme. Copy pasted:

mkdir data
touch data/config.json
# Owned by user ID of Docker container (1000)
chown -R 1000 data
# all access (for creating json database file data/updates.json)
chmod 700 data
# read access only
chmod 400 data/config.json

You will probably need a shell to do that on Unraid as far as I know.
Alternatively you can set the json on a single line in the env variable CONFIG (also see the readme).

@qdm12 commented on GitHub (Oct 28, 2022): You need to change the permissions of your bind mounted directory on your host system, see the readme. Copy pasted: ```sh mkdir data touch data/config.json # Owned by user ID of Docker container (1000) chown -R 1000 data # all access (for creating json database file data/updates.json) chmod 700 data # read access only chmod 400 data/config.json ``` You will probably need a shell to do that on Unraid as far as I know. Alternatively you can set the json on a single line in the env variable `CONFIG` (also see the readme).
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ddns-updater#230