You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While following the example: monitoring-prometheus-grafana, I encountered with the following error: err="open /prometheus/queries.active: permission denied" in the logs of the prometheus container.
It is simply that you have to change ownership for /data/prometheus folder so that inside the container the mounted folder is accesible. This can easily be done with the following command: sudo chown -R 65534:65534 data/prometheus/
Perhaps this happened because I'm not running on rootless docker, however I think this should be specified as one of the steps in the repo's README
The text was updated successfully, but these errors were encountered:
While following the example: monitoring-prometheus-grafana, I encountered with the following error:
err="open /prometheus/queries.active: permission denied"
in the logs of the prometheus container.It is simply that you have to change ownership for
/data/prometheus
folder so that inside the container the mounted folder is accesible. This can easily be done with the following command:sudo chown -R 65534:65534 data/prometheus/
Perhaps this happened because I'm not running on rootless docker, however I think this should be specified as one of the steps in the repo's README
The text was updated successfully, but these errors were encountered: