On postgresql startup, I see this in the log files
2017年07月17日 05:21:01.743 UTC> LOCATION: CreateAnonymousSegment, pg_shmem.c:484
2017年07月17日 05:21:01.868 UTC> LOG: 00000: redirecting log output to logging collector process
2017年07月17日 05:21:01.868 UTC> HINT: Future log output will appear in directory "pg_log".
2017年07月17日 05:21:01.868 UTC> LOCATION: SysLogger_Start, syslogger.c:622
2017年07月21日 05:46:01.680 UTC> DEBUG: 00000: logger shutting down
2017年07月21日 05:46:01.680 UTC> LOCATION: SysLoggerMain, syslogger.c:490
2017年07月21日 05:46:01.973 UTC> DEBUG: 00000: mmap(8264876032) with MAP_HUGETLB failed, huge pages disabled: Cannot allocate memory
I have never used huge pages - turning on huge_pages in postgres.conf
does not help, I get different errors and the server will not start. I am unfamiliar with these settings.
Please help point me in the right direction to explore why these errors are occurring and what I should do about them - adjustments to memory settings, logging (it is set very high) vacuuming, or what?
What parts of the PostgreSQL manual are relevant?
Stack: postgresql 9.6 on aws ec2 generic linux
UPDATE: This post was originally written about things I noticed on installing a backup utility, and how that appeared to be causing errors, then I noticed a server without the utility is logging the same messages.
2 Answers 2
Met the same issue when deploying postgre-sql by postgres-operator (https://github.com/zalando/postgres-operator) in Kubernetes. The size of required shared memory usage by postgre-sql is based on shared_buffers and max_connections. While, the shared_buffers configured by patroni is calculated based on the size of physical memory in the host. In our case, the size of physical memory is huge, however the memory limit of the container of postgre-sql is configured much less than the size of physical memory in the host. As a result, postgre-sql tries to allocate 4GB memory however only 256MB is available, and then fail to start.
Specify shared_buffers with a reasonable value resolved the problem.
Own experience suggests that this is due to PostgreSQL running out-of-memory.
For instance, I ran into this error when attempting to bump max_connections
up to a very high value (say, 2000) on a "small" server.
-
After migration from 2gbRAM to server having 8gbRAM I ran into the OPs issue. Changing max_connections from 6200 down to 200 did not solve the problem.Grim– Grim2020年01月06日 12:32:25 +00:00Commented Jan 6, 2020 at 12:32
-
Refer: postgresql.org/docs/9.6/kernel-resources.html. This might help yousudalai– sudalai2020年01月06日 14:57:51 +00:00Commented Jan 6, 2020 at 14:57
postgresql.conf
andsysctl.conf
. Since your data directory looks like it's on a RHEL/CentOS variant, you could reload it withsysctl -p
. Given your error messages, it looks like you need to change thekern.ipc.shmmax
to be greater than the number of bytes listed in your second error message, as noted in the Managing Kernel Resources section of the docs.