-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker images for APM Server failing with permission issues #18858
Labels
Comments
botelastic
bot
added
the
needs_team
Indicates that the issue/PR needs a Team:* label
label
May 29, 2020
Pinging @elastic/integrations (Team:Integrations) |
botelastic
bot
removed
the
needs_team
Indicates that the issue/PR needs a Team:* label
label
May 29, 2020
IIUC, For instance the docker container apm-server failed with logs You can reproduce it locally if you run the below docker-compose: |
It is |
kuisathaverat
added a commit
to kuisathaverat/apm-agent-js-base
that referenced
this issue
May 29, 2020
This was referenced May 31, 2020
I have opened two PRs with possible options to fix this:
|
v1v
added a commit
to v1v/apm-agent-rum-js
that referenced
this issue
Jul 3, 2020
* upstream/master: (23 commits) feat(rum-core): capture XHR/Fetch spans using resource timing (elastic#825) docs: update set-up.asciidoc (elastic#814) chore: remove compressed size gh workflow (elastic#828) feat: use page visibilityState for browser responsiveness check (elastic#813) ci(jenkins): report bundlesize as a GitHub comment (elastic#826) docs: release notes for 5.2.1 (elastic#824) chore(release): publish fix(rum-core): protect aganist buggy navigation timing data (elastic#819) fix(rum-core): protect aganist buggy navigation timing data (elastic#819) chore(rum-core): use startTime for LCP marks (elastic#815) fix(rum-core): capture tbt after all task entries are observed (elastic#803) feat(rum-react): use correct path when route is path array (elastic#800) ci: enable benchmark on a PR basis (elastic#812) ci: use dockerLogs step (elastic#810) fix: env var invalid type (elastic#809) fix: workarount for elastic/beats#18858 (elastic#807) docs: add release notes for 5.2.0 (elastic#801) chore(release): publish fix(rum-core): consider user defined type of high precedence (elastic#798) fix(rum): use single instance of apm across all packages (elastic#796) ...
David-Development
pushed a commit
to David-Development/apm-agent-rum-js
that referenced
this issue
Oct 20, 2021
SuperButterfly
pushed a commit
to SuperButterfly/apm-agent-rum-js
that referenced
this issue
Sep 18, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
It seems that with introducing changes in #12905 config file permissions were changed from
0640
to0660
.When running the APM Server docker images without setting
BEAT_STRICT_PERMS=false
the check OwnerHasExclusiveWritePerms now fails with the errorconfig file ("apm-server.yml") can only be writable by the owner but the permissions are "-rw-rw----"
. Our integration test environment fails since pulling in these changes into APM Server.It seems to be the same issue for other beats, e.g. running
docker run -e docker.elastic.co/beats/metricbeat:8.0.0-SNAPSHOT
results in the mentioned error and prevents the beat from starting, whereasdocker run -e BEAT_STRICT_PERMS=false docker.elastic.co/beats/metricbeat:8.0.0-SNAPSHOT
works fine.@barkbay @jsoriano could you please take a look at this, from what I understand the intention was not to switch to
BEATS_STRICT_PERMS=false
.The text was updated successfully, but these errors were encountered: