linux怎么查看本机内存大小
247
2022-11-12
centos7 部署thrift
安装部署thrift
下载thrift
wget -zxvf thrift-0.11.0.tar.gz
将解压后的文件,移动到合适的目录下
在官方下载的tar包中已经有了configure脚本, 如果是首次下载的源码文件没有configure脚本,需要使用bootstrap.sh自动生成。
进入thrift文件里
安装依赖
yum install -y install automake bison flex gcc gcc-c++ git libboost1.55 libevent-dev libssl-dev libtool make pkg-config
进行配置(两种方式吧)
./configure (使用默认配置) ./configure --with-cpp --with-boost --with-python --without-csharp --with-java --without-erlang --without-perl --with-php --without-php_extension --without-ruby --without-haskell --without-go
编译 安装
make && make install
测试是否安装成功?
#thrift Usage: thrift [options] file Use thrift -help for a list of options
安装过程报的问题
缺少automake-1.15 动态库?
wget ftp://mirrors.ustc.edu.cn/gnu/automake/automake-1.15.tar.xz tar xf automake-1.15.tar.xz cd automake-1.15/ ./configure && make && make install
thrift例子
编写一个thrift文件 demo.thrift
namespace java com.xej.thrift.demo namespace py thrift.demo namespace go com.xej.thrift.demo service DemoService{ void sayHello(1:string name); }
生成java,py, go 类型的文件
thrift --gen java demo.thrift thrift --gen py demo.thrift thrift --gen go demo.thrift
如果有相应的文件夹生成,说明没问题
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~