无法识别的配置参数“dynamic_shared_memory_type”

时间:2015-08-03 22:34:18

标签: php postgresql

我无法连接到postgres(使用hombrew版本9.4.4安装)。我以前能够成功连接。我认为唯一可以改变的是我安装了PHP 5.5。

我尝试启动服务器:

postgres -D /usr/local/var/postgres

LOG:  unrecognized configuration parameter "dynamic_shared_memory_type"
in file "/usr/local/var/postgres/postgresql.conf" line 130
FATAL:  configuration file "/usr/local/var/postgres/postgresql.conf"
contains errors

我的服务器日志返回相同的错误。 以下是抛出错误的postgresql.conf文件的内容:

dynamic_shared_memory_type = posix  # the default is the first option
                # supported by the operating system:
                #   posix
                #   sysv
                #   windows
                #   mmap
                # use none to disable dynamic shared memory

在尝试排查时,我注释掉了dynamic_shared_memory_type并收到了此错误:

FATAL:  database files are incompatible with server
DETAIL:  The data directory was initialized by PostgreSQL version 9.4, 
which is not compatible with this version 9.3.5.

然而,运行brew info postgres,我被告知我的版本是9.4.4。

1 个答案:

答案 0 :(得分:12)

此命令:

$ postgres -D /usr/local/var/postgres

启动postgres中首先出现的$PATH二进制文件。

在您的情况下,它恰好是postgres 9.3.5,可能来自之前的安装和/或其他安装程序。由于新的dynamic_shared_memory_type参数,该版本不适用于9.4.x的postgresql.conf,但更重要的是它无论如何都无法用于9.4.x数据目录(数据格式在主要版本之间不兼容)的版本)。

命令which postgres会告诉它在磁盘上的位置。

通常,brew的postgres二进制文件应位于/usr/local/bin/postgres中。为避免与其他postgres发生冲突,请使用绝对路径而不是相对路径启动它:

$ /usr/local/bin/postgres -D /usr/local/var/postgres

 $ /usr/local/bin/postgres -v

只检查版本号。

在Mac OS X上,有很多不同的安装程序,如下所示: https://wiki.postgresql.org/wiki/Installers/Mac_OS_X
具有不同的磁盘布局。在Mac上尝试不同的安装程序并最终并行安装几个postgres并不罕见。