My PHP container runs puppeteer to generate PDF. By generating a PDF document, it also creates two core dump files inside my container. I am not sure where they actually come from.
The host/server is CentOS 7.
I’ve checked following:
- No application error log, Browsershot/puppeteer is running without errors.
- No error log (e.g. segfault) found in
/var/log/messages
I’ve tried to disable core dumps
By following Disable core dumps section of https://linux-audit.com/understand-and-configure-core-dumps-work-on-linux/, I’ve done:
- Adding following content to
/etc/security/limits.conf
* soft core 0
* hard core 0
-
Created a disable-core-dumps.sh by:
echo “ulimit -c 0 > /dev/null 2>&1” > /etc/profile.d/disable-coredumps.sh
-
Added following content to
/etc/systemd/coredump.conf
[Coredump]
Storage=none
ProcessSizeMax=0
-
And reboot the server and the container.
-
I’ve also tried to set
ulimit -c 0
inside the container (alpine)
None of the tricks above work for me. Everytime the puppeteer generates a PDF it always create two core dump files like below:
core.131 core.52
The core files look like:
Can anyone helps me to disable the core dumps? Thanks a lot.
3
Answers
You have to start your container with the option
--ulimit core=0
to disable coredumps.Reference: https://docs.docker.com/engine/reference/commandline/run/#set-ulimits-in-container—ulimit
Example
On the host, temporarily set the coredump path to
/tmp
for verification:Start a container as usual and force a core dump:
Now, with
--ulimit core=0
:I had this problem too on the docker swarm service and
--ulimit core=0
does not work in swarm service; I used the following command and it worked for me in docker swarm service!For those using docker-compose, in the
.yml
file setulimits
: