Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Flume Agents - do they appear as a port in NETSTAT?

avatar
Explorer

We have a Flume Agent running well currently...

 

agent1.sources.http-source.type = http
agent1.sources.http-source.port = 8989

 

It is doing its job, but I was interested to know why it does not display as an open/listening port via the box standard NETSTAT Linux command?

 

Thanks in advance!

 

Neil

1 ACCEPTED SOLUTION

avatar
It should definitely show up in netstat as a LISTENING port. You could also use 'lsof -iTCP:8989' to confirm if it is listening.

View solution in original post

2 REPLIES 2

avatar
It should definitely show up in netstat as a LISTENING port. You could also use 'lsof -iTCP:8989' to confirm if it is listening.

avatar
Explorer
Thanks for the second command, this is very useful and a lot simpler to identify than netstat - Cheers!