thrift安装遇到的问题以及解决方法(必看篇)
1. 必须安装boost。最新的稳定版是1.48.0。
1.1.先下载:http://sourceforge.net/projects/boost/files/boost/1.48.0/
选择tar.gz包,
下载后我解压到了/usr/local/boost_1_48下:tar zxvf boost1.48.0 -c /usr/local/boost_1_48
1.2.安装过程和以前的老版本有些不同,看自带软件包里的index.html就可以了:
主要内容涉及到安装的就2步,很简单,进入一级目录:
$ ./bootstrap.sh //默认安装到/usr/local/include/boost 和/usr/local/lib下
$ ./b2 install
1.3接下来设置环境变量自动导入:
先用vim创建文件:/etc/profile.d/boost.sh,(若不能执行的话使用chmod a+x boost.sh设置执行权限),
内容为:
#!/bin/sh #boost settings boost_root=/opt/boost_1_48 boost_include=/usr/local/include/boost boost_lib=/usr/local/lib export boost_root boost_include boost_lib 注意: linux程序运行时加载共享库出现的错误: "error while loading shared libraries: xxxx: cannot open shared object file: no such file or directory" 解决步骤: 1、使用find命令查找缺失的xxxx共享库文件所在位置。参考:#find 目录 -name "xxxx*" 2、将找到的目录位置写入 /etc/ld.so.conf 配置文件,这个文件记录了编译时使用的动态链接库的路径。 3、然后使用ldconfig命令,使配置生效。
2. 安装libevent(选择noblokingserver必须安装libevent,如果出现noblokingserver相关的错误就是没有安装libevent)。
我安装的版本是最新的libevent1.4.13:
wget http://monkey.org/~provos/libevent-1.4.13-stable.tar.gz tar xvzf libevent-1.4.13-stable.tar.gz cd libevent-1.4.13-stable ./configure && make make install
3. 接下来就是安装thrift,我下载的是最新的thrift0.8.0版本,进入thrift0.8.0目录:
因为我只需要编译cpp,用以下命令:(编译选项可以参考http://www.coder4.com/archives/2110):
./configure --with-cpp --with-boost --without-python --without-csharp --without-java --without-erlang --without-perl --without-php --without-php_extension --without-ruby --without-haskell --without-go #make make #install make install
如果还需要编译java或者别的语言,还需要提前安装别的包,具体参考http://wiki.apache.org/thrift/thriftrequirements:
c++ boost 1.33.1+ libevent (optional, to build the nonblocking server) zlib (optional) java java 1.5+ apache ant apache ivy (recommended) apache commons lang (recommended) slf4j c#: mono 1.2.4+ (and pkg-config to detect it) or visual studio 2005+ python 2.4+ (including header files for extension modules) php 5.0+ (optionally including header files for extension modules) ruby 1.8+ (including header files for extension modules) erlang r12 (r11 works but not recommended) perl 5 bit::vector class::accessor
安装完thrift先试验一下。进入thrift下的tutorial,编译给出的例子:
thrift -r --gen cpp tutorial.thrift,
会在gen-cpp目录下生成一些文件。然后进入cpp目录,进行编译:
make
有可能遇到错误,提示: hton* declarations will not be visible to the compiler。这是thrift的一个bug,可能有的版本没有该错误,但是我安装的这个版本有。解决的办法是:
使用g++编译时加入 -dhave_netinet_in_h
这样可以使预处理器include进 netinet/in.h in thrift/protocol/tprototol.h, 这样 hton* declarations will be visible to the compiler.
下面是一个老外对这个bug的说明:
tprotocol.h has the following lines which cause the compiler error when have_netinet_in_h is not defined.
#ifdef have_netinet_in_h #include <netinet/in.h> #endif
this might be a bug in the thrift configure script which somehow skips the define.
针对上面的那个例子,修改cpp文件夹里的makefile,在编译行加入相应的参数:
g++ -dhave_netinet_in_h -o cppserver -i${thrift_dir} -i${boost_dir} -i../gen-cpp -l${lib_dir} -lthrift cppserver.cpp ${gen_src}
再进行make,得到两个可执行文件,先执行cppserver,再启动cppclient。
到此,thrift安装完毕。
以上就是小编为大家带来的thrift安装遇到的问题以及解决方法(必看篇)全部内容了,希望大家多多支持~
推荐阅读
-
DEV C++在win7系统中安装以及遇到的一些问题解决
-
安装PHP可能遇到的问题“无法载入mysql扩展” 的解决方法
-
framework7的改进,以及与vue组合使用遇到的问题以及解决方法 (附vue的原理)
-
Win10系统安装MySQL8.0.13遇到的问题及解决方法
-
Windows下docker的安装以及遇到的问题
-
小程序开发过程中的遇到的问题以及解决方法(1)
-
mysql5.7.24 解压版安装步骤以及遇到的问题
-
生产环境使用elasticsearch遇到的一些问题以及解决方法(不断更新)
-
生产环境使用elasticsearch遇到的一些问题以及解决方法(不断更新)
-
阿里云服务器CentOS 7安装mysql以及遇到的问题