Abbass Marouni created FLUME-2907:
-------------------------------------
Summary: Correct Flume NetCat Source agent Example
Key: FLUME-2907
URL: https://issues.apache.org/jira/browse/FLUME-2907
Project: Flume
Issue Type: Bug
Reporter: Abbass Marouni
Priority: Minor
a1.sources.r1.bind defined 2 times :
{code}
a1.sources = r1
a1.channels = c1
a1.sources.r1.type = netcat
a1.sources.r1.bind = 0.0.0.0
a1.sources.r1.bind = 6666
a1.sources.r1.channels = c1
{code}
Should be :
{code}
a1.sources = r1
a1.channels = c1
a1.sources.r1.type = netcat
a1.sources.r1.bind = 0.0.0.0
a1.sources.r1.port = 6666
a1.sources.r1.channels = c1
{code}
People might not pay attention when copying the configurations.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)