Listen tcp 127.0.0.1:8088: bind: address already in use

Try ‘grep -r “808[678]” /etc’ and see what config files (for any applications)
you can find which might be trying to bind to those ports.

Alternatively ‘netstat -lptn’.

This will tell you:

  • which application is shown as listening on port 8088
  • whether anything is listening on ports 8086 or 8087
  • which ports influx is listening on

That should get you a good way to understanding what’s happening, I hope.

Antony.