Replies: 1 comment
-
|
the 403 intermittent error usually means one of these:
docker logs portainer 2>&1 | grep -i "403\|denied\|auth"
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
to debug further, enable debug logging: docker run -d -p 9000:9000 \
--name portainer \
--restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data \
portainer/portainer-ce:latest \
--log-level DEBUGthis will give more info about why auth fails. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Ask a Question!
portainer-ce:2.32.0
Portainer authentication failed, status code: 403, error: {"message":"Access denied","details":"Access denied to resource"}
But errors don't occur every time; they do occur every once in a while
Beta Was this translation helpful? Give feedback.
All reactions