3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LogStashのインストール

Posted at

やってみたのでメモ。あまりやることは多くない

前提

  • CentOS7
  • Java8インストール済み

手順

  1. サインインキーを登録する

    # rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
    
  2. リポジトリ情報を登録する

    # vi /etc/yum.repos.d/logstash.repo
    
    logstash.repo
    [logstash-6.x]
    name=Elastic repository for 6.x packages
    baseurl=https://artifacts.elastic.co/packages/6.x/yum
    gpgcheck=1
    gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
    enabled=1
    autorefresh=1
    type=rpm-md
    
  3. yumでインストールする

    # yum -y install logstash
    

参考

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?