linux 安装goagent

1,下载goagent,去官网可能会打不开,在url前加入https://即可
2,按 https://code.google.com/p/goagent/wiki/GoAgent_Linux 这个页面的说明安装
3,有可能会遇到 ‘module’ object has no attribute ‘HTTPSHandler’ , 原因是新装的python编译的时候没有包含ssl,要重新编译一下
      <1>.先安装openssl
     wget http://www.openssl.org/source/openssl-0.9.8g.tar.gz
     tar zxf openssl-0.9.8g.tar.gz
     cd  openssl-0.9.8g
     ./config   #需要安装perl5
     make
     make install
      <2>.修改python的编译配置

           vim Python-2.7.4/Modules/Setup.dist

           找到以下内容,取消注释(文章说是206-209,不过我这个在210多行,差不多,一般:206回车就能看到了)

           

           取消注释后重新编译python

          cd Python-2.7.4

     ./configure
     make
     make install


参考:
https://code.google.com/p/goagent/wiki/GoAgent_Linux
http://www.2cto.com/Article/201307/229753.html
http://www.oschina.net/question/54100_27897

你可能感兴趣的:(linux,goagent,翻墙)