Twemproxy安装

来源:互联网 发布:铸造模拟软件 编辑:程序博客网 时间:2024/06/16 13:06

下载automake、libtool、autoconf、twemproxy包:

automake-1.12.1.tar.gz 包下载地址:http://ftp.gnu.org/gnu/automake/

autoconf-2.69.tar.gz 包下载地址:http://ftp.gnu.org/gnu/autoconf

libtool-2.2.4.tar.gz 包下载地址:http://ftp.gnu.org/gnu/libtool/

twemproxy包去git上下载:https://github.com/twitter/twemproxy/tree/master。

然后:

  1. tar -xf autoconf-2.69.tar.gz   
  2. cd autoconf-2.69
  3. ./configure   
  4. make && make install  
  5.   
  6. tar -xf automake-1.12.1.tar.gz   
  7. cd automake-1.12.1
  8. ./configure   
  9. make && make install  
  10.   
  11. tar -xvf libtool-2.2.4.tar.gz  
  12. cd libtool-2.24
  13. ./configure   
  14. make && make install  
  15.   
  16. unzip twemproxy-master.zip   
  17. cd twemproxy-master  
  18. autoreconf -ivf  
  19. ./configure   
  20. make && make install 

0 0