Hi,
I am trying to configure two separate pipelines in logstash-6.1.1 through pipeline.yml. For each configuration file i am specifying same input and output.
1st_pipeline.conf:-
input{
beats{
port => 5044
}
}
filter{
....................
}
output{
stdout{ codec => rubydebug}
}
2nd_pipeline.conf:-
input{
beats{
port => 5044
}
}
filter{
.................................
}
output{
stdout{ codec => rubydebug }
}
Now as i am trying to run both of these pipeline together its throwing error
Plugin: <LogStash::Inputs::Beats port=>5044, id=>"289fbe7dcd840f0b3bf8e6a2cc6ef3f98776d60fcb8cc214b41d85f129b283a3", enable_metric=>true, codec=><LogStash::Codecs::Plain id=>"plain_2796f793-4d5f-4c9c-a464-86c091b70277", enable_metric=>true, charset=>"UTF-8">, host=>"0.0.0.0", ssl=>false, ssl_verify_mode=>"none", include_codec_tag=>true, ssl_handshake_timeout=>10000, tls_min_version=>1, tls_max_version=>1.2, cipher_suites=>["TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384", "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384", "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256", "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256"], client_inactivity_timeout=>60, executor_threads=>16>
Error: Address already in use