Node Exporter is always running on my local machine on localhost:9100 even if I don't execute it with terminal following this error message:
FATA[0000] listen tcp :9100: bind: address already in use source="node_exporter.go:172"
By which I can understand that this port number is already being used by another application but the thing is I don't have anything hosted there. This is what netstat | grep 9100 gives:
tcp 0 0 localhost:60232 localhost:9100 ESTABLISHED tcp6 0 0 localhost:9100 localhost:60232 ESTABLISHED
netstat -nlp
? It should show you the process. – Intisarnode_exporter
is typically what's running on9100
, you might also justkillall node_exporter
(assuming this isn't a live production system) – Unship