美文网首页big data
fluentd安装配置

fluentd安装配置

作者: 玖伍2七 | 来源:发表于2021-05-28 07:59 被阅读0次
    1. 安装ruby
    yum install -y ruby
    
    1. ruby换源
    gem sources --remove https://rubygems.org/
    gem sources -a http://mirrors.aliyun.com/rubygems/
    
    1. 安装RVM
    gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB 
    
    curl -sSL https://get.rvm.io | bash -s stable
    
    source /etc/profile.d/rvm.sh
    
    
    rvm install 2.5
    
    1. 安装fluentd
    gem install fluentd --no-document
    
    fluentd --version
    
    1. 初始化fluentd及安装mongo插件
    fluentd --setup /etc/fluentd
    
    gem install fluent-plugin-mongo  --no-document
    
    1. 启动
    fluentd -c /etc/fluentd/fluent.conf
    
    1. fluentd 比较难安装,安装以后也发现难以配置使用

    相关文章

      网友评论

        本文标题:fluentd安装配置

        本文链接:https://www.haomeiwen.com/subject/fdijsltx.html