安装 thrift 依赖库
开发工具集
$ sudo yum -y groupinstall "Development Tools"
安装 autoconf
$ sudo yum -y install autoconf
安装 automake
$ sudo yum -y install automake
安装 bison
$ sudo yum -y install bison
安装 C++ 依赖库
$ wget http://iweb.dl.sourceforge.net/project/boost/boost/1.60.0/boost_1_60_0.tar.gz
$ tar zxvf boost_1_60_0.tar.gz
$ ./bootstrap.sh --prefix=/usr
./b2 install
cd ..
安装 libevent 库
$ sudo yum -y install libevent
4.2)安装 thrift
$ wget https://github.com/apache/thrift/archive/master.zip
$ unzip master.zip
$ cd thrift-master
$ ./bootstrap.sh
$ ./configure --with-boost=/usr/local
$ make && make install
这样我们的 thrift 安装成功了。