我正在尝试将Apache HAWQ安装到我的节点。我引用了Apache HAWQ wiki页面(https://cwiki.apache.org/confluence/display/HAWQ/Build+and+Install)并成功完成了所有必需的依赖模块,包括Hadoop,boost,thrift等。
以下步骤是安装Apache HAWQ,以下是命令。
git clone https://git-wip-us.apache.org/repos/asf/incubator-hawq.git
# The code directory is incubator-hawq.
CODE_BASE=`pwd`/incubator-hawq
cd $CODE_BASE
# Run command to generate makefile.
./configure
make -j8
# Install HAWQ
make install
但是,当我运行./configure
时,我收到了错误信息..
.....
checking for snappy-c.h... yes
checking for library containing snappy_max_compressed_length... -lsnappy
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking thrift/protocol/TBinaryProtocol.h usability... no
checking thrift/protocol/TBinaryProtocol.h presence... no
checking for thrift/protocol/TBinaryProtocol.h... no
configure: error: thrift is required
虽然我使用configure && make && make install
安装并编译了thrift,但shell命令找不到thrift库。
所以我键入find \ -name 'TBinaryProtocol.h*'
以找到已安装与thrift相关的模块的位置。我得到了以下信息。
[root@hawq1 incubator-hawq]# find / -name 'TBinaryProtocol.h*'
/usr/local/include/thrift/protocol/TBinaryProtocol.h
/root/Downloads/thrift-0.9.1/lib/cpp/src/thrift/protocol/TBinaryProtocol.h
/root/Downloads/thrift-0.9.1/lib/cocoa/src/protocol/TBinaryProtocol.h
/root/Downloads/hawq/thrift-0.9.1/lib/cpp/src/thrift/protocol/TBinaryProtocol.h
/root/Downloads/hawq/thrift-0.9.1/lib/cocoa/src/protocol/TBinaryProtocol.h
这意味着我有thrift模块,我认为它们已正确安装在我的目录中。然后我按照Apache wiki页面建议的操作键入ldconfig -p /root/Downloads/hawq/thrift-0.9.1/lib/
。
但我得到了同样的错误。最后我搜索了configure.log文件并找到了以下消息,表明它无法找到thrift模块的位置。
configure:10377: checking thrift/protocol/TBinaryProtocol.h usability
configure:10377: g++ -c -g -O2 -D_GNU_SOURCE conftest.cpp >&5
conftest.cpp:76:45: fatal error: thrift/protocol/TBinaryProtocol.h: No such file or directory
#include <thrift/protocol/TBinaryProtocol.h>
如何解决这个问题?任何帮助将非常感谢。
答案 0 :(得分:1)
我认为你的节俭安装路径不是/root/Downloads/hawq/thrift-0.9.1/lib/
。
你能试试/usr/local/include/thrift
吗?
答案 1 :(得分:-1)
也许你可以尝试用yum安装thrift。