【发布时间】:2021-02-16 08:27:30
【问题描述】:
我正在尝试在 Open Suse 上安装 GridDB,因为它无法在 Fedora 上运行。当我按照帮助文档 (https://docs.griddb.net/gettingstarted/using-source-code/) 中的说明运行命令 $ ./bootstrap.sh 时,会出现以下错误。
error while running the command ./bootstrap.sh
请帮忙。
【问题讨论】:
我正在尝试在 Open Suse 上安装 GridDB,因为它无法在 Fedora 上运行。当我按照帮助文档 (https://docs.griddb.net/gettingstarted/using-source-code/) 中的说明运行命令 $ ./bootstrap.sh 时,会出现以下错误。
error while running the command ./bootstrap.sh
请帮忙。
【问题讨论】:
在启动 gridDB 配置之前,您需要安装 automake、autoconf 和 libtool。
如果你有 zypper 作为包管理器:
zypper install libtool automake autoconf
另外,请注意,您所关注的文档已在 Centos 7 上经过测试和验证:
We have confirmed the operation on CentOS 7.6 (gcc 4.8.5).
您可能会遇到一些这样的惊喜。很乐意在途中提供帮助。
编辑 1:
对于那些没有安装适当的 C 编译器的人:
zypper install gcc48
【讨论】: