致命错误无法分配134217728字节的共享内存段:mmap:无法分配内存(12)

问题描述 投票:0回答:1

早上好,这是我从 apache 错误中得到的信息

Fatal Error Unable to allocate shared memory segment of 134217728 bytes: mmap: Cannot allocate memory (12)

这是我的

ipcs -lm

------ Limiti della memoria condivisa --------
max number of segments = 4096
max seg size (kbytes) = 131072
max total shared memory (kbytes) = 536870912
dimensione min seg (byte) = 1

这是

cat /etc/sysctl.conf

# Controls the default maxmimum size of a mesage queue
# kernel.msgmnb = 65536

# Controls the maximum size of a message, in bytes
# kernel.msgmax = 65536

# Controls the maximum shared segment size, in bytes
# kernel.shmmax = 200000000

# Controls the maximum number of shared memory segments, in pages
# kernel.shmall = 50000
# 

我已将

unlimit
设置为无限制,并且我已尝试了互联网上存在的所有内容。

你能告诉我出了什么问题吗?

apache memory centos
1个回答
0
投票

首先, 请考虑删除前面的#号

# kernel.shmmax = 200000000
# kernel.shmall = 50000

像这样:

# Controls the maximum shared segment size, in bytes
kernel.shmmax = 200000000

# Controls the maximum number of shared memory segments, in pages
kernel.shmall = 50000
© www.soinside.com 2019 - 2024. All rights reserved.