首页 > 代码库 > CentOS 7 gem 安装fluentd
CentOS 7 gem 安装fluentd
由于logstash 太过臃肿,CPU和内存使用过大,我们需要一个性能好,资源消耗低的替代品。fluentd就是我们想要的。测试表明,在相同负载情况下,fluentd的性能数倍于logstash。
由于CentOS7 自带ruby版本过低,本文使用ruby 2.4.1 安装fluentd .
1、卸载自带的ruby
yum remove ruby -y
2、安装ruby2.4.1
yum install http://120.24.7.75:8000/centos/7/x86_64/ruby2.4-2.4.1-1.el7.centos.x86_64.rpm
3、调整gem源
gem sources #列出默认源 gem sources --remove https://rubygems.org/ #移除默认源 gem sources -a https://mirrors.ustc.edu.cn/rubygems/ #添加科大源
4、安装编译环境和软件包依赖
yum install gcc gcc-c++ make automake autoconf libtool openssl-devel jemalloc-devel gmp-devel -y
5、安装fluentd
gem install fluentd
6、安装fluent插件
gem install fluent-plugin-kafka gem install fluent-plugin-elasticsearch
7、初始化fluentd
fluentd --setup /etc/fluentd
前台debug 测试,用于检查配置文件
fluentd -c /etc/fluentd/fluentd/fluent.conf -vv
8、创建启动脚本/usr/lib/systemd/system/fluentd.service
[Unit] Description=Fluentd Documentation=http://www.fluentd.org/ After=network.target [Service] Type=simple ExecStart=/usr/bin/fluentd -c /etc/fluentd/fluent.conf Restart=on-failure User=fluentd Group=fluentd [Install] WantedBy=multi-user.target
9、启动fluentd
systemctl daemon-reload systemctl enable fluentd systemctl start fluentd
fluentd 是cruby写的,受限于GIL,无法利用多核CPU,已知每个CPU可处理5000个并发,
如果性能不能满足需求,可以进程多开。
本文出自 “运维博客” 博客,请务必保留此出处http://purplegrape.blog.51cto.com/1330104/1956249
CentOS 7 gem 安装fluentd
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。