zoukankan      html  css  js  c++  java
  • scribe日志分析工具安装

    系统CentOS6.2 x86_64

    1.yum安装gcc,flex,m4,python/python-devel,ruby,libevent/libevent-devel,openssl/openssl-devel,bzip2/bzip2-devel,zlib/zlib-devel,bison,autoconf,automake,libtool

    2.编译安装boost

    2.1 wget http://nchc.dl.sourceforge.net/project/boost/boost/1.45.0/boost_1_45_0.tar.gz
    2.2 tar zxvf boost_1_45_0.tar.gz -C /usr/local/
    2.3 ./bootstrap.sh
    2.4 ./bjam -s HAVE_ICU=1 --prefix=/usr/local/boost --includedir=/usr/local/boost/include --libdir=/usr/local/boost/lib
    2.5 ./bjam install --prefix=/usr/local/boost
    echo "/usr/local/boost/lib" >> /etc/ld.so.conf
    echo "/usr/local/boost/include" >> /etc/ld.so.conf
    ldconfig

    3.编译安装thrift+fb303

    安装thrift
    3.1
    wget http://archive.apache.org/dist/thrift/0.7.0/thrift-0.7.0.tar.gz 3.2 tar zxvf thrift-0.7.0.tar.gz -C/usr/local/ 3.3 cd /usr/local/thrift-0.7.0 3.4 chmod +x configure 3.5 ./configure--with-boost=/usr/local/boost 3.6 make && make install
    echo "/usr/local/thrift/lib" >> /etc/ld.so.conf
    ldconfig
    安装fb303
    3.7 cd /usr/local/thrift-0.7.0/contrib
    /fb303 3.8 chmod +x bootstrap.sh 3.9 ./bootstrap.sh --with-boost=/usr/local/boost/ 3.10 ./configure --prefix=/usr/local/thrift/fb303 --with-boost=/usr/local/boost --with-thriftpath=/usr/local/thrift 3.11 make && ake install

    4.编译安装scribe

    4.1 去https://github.com/facebook/scribe下载scribe
    4.2 解压 unzip scribe-master.zip
    4.3 cd scribe-master
    export BOOST_ROOT=/usr/local/boost
    export LD_LIBRARY_PATH=/usr/local/thrift/lib:/usr/lib:/usr/local/lib:/usr/local/boost/lib:/usr/local/thrift/fb303/lib
    ./bootstrap.sh  --with-boost=/usr/local/boost --with-boost-filesystem=boost_filesystem
    4.4 ./configure --prefix=/usr/local/scribe --with-boost=/usr/local/boost --with-thriftpath=/usr/local/thrift  --with-fb303path=/usr/local/thrift/fb303 --with-boost-filesystem=boost_filesystem
    4.5 make && make install

    5. 测试

    cp example/example1.conf  /tmp
    /usr/local/scribe/bin/scribed /tmp/example1.conf
    进行测试

    参考:

    http://www.cnblogs.com/hadoopdev/p/3207940.html

    http://ixdba.blog.51cto.com/2895551/1368792

  • 相关阅读:
    Pythoy 数据类型序列化——json&pickle 模块
    Python xml 模块
    Spring MVC <mvc:annotation-driven/>的作用
    Spring MVC学习笔记
    springboot配置logback日志
    Git master合并分支时提示“Already up-to-date”
    解决idea tomcat乱码问题
    MYSQL 八大优化方案
    SpringBoot项目集成PageHelper使用
    Git--远程仓库版本回退方法
  • 原文地址:https://www.cnblogs.com/wsl222000/p/5226728.html
Copyright © 2011-2022 走看看