LoginSignup
15
17

More than 5 years have passed since last update.

td-agent2をCentOSにインストールする

Last updated at Posted at 2014-08-03

まず既存のtd-agentを削除

yum --setopt=tsflags=noscripts remove td-agent
yum --setopt=tsflags=noscripts remove td-agent2

インストール

curl -L http://toolbelt.treasuredata.com/sh/install-redhat-td-agent2.sh | sh

必要なpluginをインストール

PLUGINS="forest mysql-replicator record-reformer elasticsearch file-sprintf"
for PLUGIN in $PLUGINS; do td-agent-gem install fluent-plugin-${PLUGIN};done

pluginが入ってるか確認

ls -l /opt/td-agent/embedded/lib/ruby/gems/2.1.0/gems/

起動(service名はtd-agent)

sudo /etc/init.d/td-agent restart
15
17
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
17