I am trying to start my elasticsearch node and I am getting the following error
Exception in thread "main" BindTransportException[Failed to bind to [9300-9400]]; nested: ChannelException[Failed to bind to: /192.168.0.1:9400]; nested: BindException[Cannot assign requested address];
Likely root cause: java.net.BindException: Cannot assign requested address
I am not incredibly linux savvy but I googled how to check if a process is using a certain port and found the following
lsof -n -iTCP:9400
which returns nothing. i also tried
netstat -tulpn | grep 9400
which also returned nothing