我将 PostgreSQL 的共享缓冲区(以及其他设置)增加到 4096M,现在 PostgreSQL 无法启动,并给出以下错误消息。
我应该将内核SHMMAX
参数更改为 4096M 吗?该系统有 16GB 的 RAM。应该怎么做?我应该改成SHMALL
什么?我希望更改是永久性的,并在重新启动后持续存在。
* Starting PostgreSQL 9.1 database server
* The PostgreSQL server failed to start. Please check the log output:
2013-04-15 06:15:53 UTC FATAL: could not create shared memory segment: Invalid argument
2013-04-15 06:15:53 UTC DETAIL: Failed system call was shmget(key=5432001, size=4418322432, 03600).
2013-04-15 06:15:53 UTC HINT: This error usually means that PostgreSQL's request for a shared memory segment exceeded your kernel's SHMMAX parameter. You can either reduce the request size or reconfigure the kernel with larger SHMMAX. To reduce the request size (currently 4418322432 bytes), reduce PostgreSQL's shared memory usage, perhaps by reducing shared_buffers or max_connections.
If the request size is already small, it's possible that it is less than your kernel's SHMMIN parameter, in which case raising the request size or reconfiguring SHMMIN is called for.
The PostgreSQL documentation contains more information about shared memory configuration.
自由的
total used free shared buffers cached
Mem: 24744200 1244936 23499264 0 77480 670240
-/+ buffers/cache: 497216 24246984
Swap: 16775160 0 16775160
从PostgreSQL 文档中,
页面下方是如何在 Linux 上进行更改的示例。允许 8 GB:
如果可行,您可以通过编辑 使设置在下次启动时生效
/etc/sysctl.conf
。您选择的值将取决于您使用机器的其他目的。如果它是专用的 PostgreSQL 服务器,请继续并允许 PostgreSQL 将机器的大部分内存用于共享内存。如果您打算在同一台机器上同时运行其他东西,那么您可能需要更加保守。
在我看来,您在默认配置中编辑
shared_buffers
了您的配置。而且您有很多内存,所以您可能会尝试增加内核允许您使用的内存。所以创建一个文件
然后里面有以下内容
用你想放在那里的数字替换数字..然后设置它运行以下
然后尝试启动postgresql