2016-09-20 19 views
-3

現在、LogstashのWebサイトのガイドラインを使用してWindows 7にLogstashをインストールして実行しようとしています。私はelasticsearchでlogstashを設定して使用するのに苦労しています。私は、コマンドの下に、以下の内容window8でelasticsearchを使ってlogstashを設定する方法は?

`

enter code here`input { stdin { } } 
output { 
    elasticsearch { hosts => ["localhost:9200"] } 
    stdout { codec => rubydebug } 

}

で作成logstash-simple.confを実行すると:私はエラーを次取得

D:\logstash-2.4.0\bin>logstash agent -f logstash-simple.conf 

、私は多くのことが、私を試してみました同じエラーが発生する

←[31mNo config files found: D:/logstash-2.4.0/bin/logstash-simple.conf 
Can you make sure this path is a logstash config file? {:level=>:error}←[0m 
The signal HUP is in use by the JVM and will not work correctly on this platform 

D:\ logstash-2.4.0 \ bin>

答えて

0

No config files foundを間違えて読んでください。したがって、Logstashはlogstash-simple.confファイルを見つけることができません。

だから、最終的に私は考え出し

D:\logstash-2.4.0\bin>logstash agent -f [Direct path to the folder containing logstash-simple.conf]logstash-simple.conf 
+0

を試してみてください。ファイルの拡張子は.confではなく、.confです。今私はそれを変更しました。 –

関連する問題