0

试图在 docker postgres 容器上安装 cstore_fdw 只是为了测试柱状功能,我被困在构建/制作 cstore 存储库的点上。

操作系统是 debian 9,postgres 11,我已经安装了 make 和一些我需要的工具。

构建和运行 make cmd 的步骤是 postgres 的 bcz 失败。在此处的“构建”部分中找到:https ://github.com/citusdata/cstore_fdw

目录
cstore 目录:/var/lib/postgresql/cstore_fdw/
pg 配置目录:/var/lib/postgresql/data/postgresql.conf

在 cstore 目录中,我运行以下命令并收到以下错误,我不知道为什么。

PATH=/var/lib/postgresql/data/:$PATH make

Makefile:38: /usr/lib/postgresql/11/lib/pgxs/src/makefiles/pgxs.mk: No such file or directory
Makefile:45: *** PostgreSQL 9.3 or 9.4 or 9.5 or 9.6 or 10 or 11 is required to compile this extension. Stop.

我还尝试在make cmd中使用pg bin目录,我认为它是/usr/lib/postgresql/11/bin/,这给出了同样的错误。

谢谢你的帮助

4

1 回答 1

3

您的 docker 映像不包含 PostgreSQL 扩展构建基础设施 PGXS。

您将需要安装它和 PostgreSQL 头文件。

于 2019-08-30T06:49:16.690 回答