June 2017
Intermediate to advanced
536 pages
9h 49m
English
Apache Thrift can be installed from source files. Assuming that we have a fresh Ubuntu 16.10 installation, we can kick off the Apache Thrift installation steps using the following set of commands:
sudo apt-get updatesudo apt-get -y install php automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config
These two commands should get us the necessary tooling to compile our Apache Thrift source files. Once this is done, we can pull the actual source files on our machine:
wget http://apache.mirror.anlx.net/thrift/0.10.0/thrift-0.10.0.tar.gztar -xvf thrift-0.10.0.tar.gzcd thrift-0.10.0/
With the source files unpacked, we can trigger the configure and make commands, as follows:
./configure ...
Read now
Unlock full access