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

    https://blog.csdn.net/isoleo/article/details/22084205

    https://www.linuxidc.com/Linux/2016-03/128793.htm

    系统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 cd /usr/local/thrift-0.7.0/boost_1_45_0;   ./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
    进行测试

    Scribe配置文件解析  http://www.linuxidc.com/Linux/2013-07/87767.htm

    大数据应用日志采集之Scribe 安装配置指南  http://www.linuxidc.com/Linux/2013-07/87766.htm

    更多CentOS相关信息见CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14

  • 相关阅读:
    神奇的C语言
    实现代码编辑器
    实现了一个简单的key-value存储系统
    一些官网说明
    苹果用户转入mate30,被恶心到了
    吐嘈一下乱用注入
    谈一下OOP的乱用现象
    mongo3.x ssl版安装文件
    再谈LRU双链表内存管理
    cocos在win平台exe无法使用 UserDefault 解决方法
  • 原文地址:https://www.cnblogs.com/shuangxinye/p/13492668.html
Copyright © 2011-2022 走看看