如何解决PostgreSQL" Aborted(core dumped)"错误?

时间:2018-04-30 02:42:24

标签: postgresql postgres-9.6

我正在尝试在Ubuntu 14.04上安装postgreSQL-9.6.4。但是当我正在运行' initdb '要创建数据库集群,它会显示错误。

$ ./configure --prefix=/path/to/install
$ make
$ make install
$ initdb -U user1 -D /path/to/install/data

当我运行' initdb '时,它会显示以下错误:

Aborted (core dumped)
child process exited with exit code 134
initdb: removing contents of data directory "/path/to/install/data"

任何帮助?

1 个答案:

答案 0 :(得分:0)

退出状态134表示该进程由SIGABRT信号调用,因为该信号的编号为6,而128 + 6 = 134。

您的过程可能未通过assert(3)断言。你有./configure --with-cassert吗?

尝试使用gdb读取核心转储,并使用bt获取回溯跟踪。这应该告诉你确切的执行失败,所以你可以解决问题。