Installation error

Hi,

port 9001 is already in use

2023.05.31 09:07:04 ERROR es[o.e.b.Bootstrap] Exception
org.elasticsearch.http.BindHttpException: Failed to bind to 127.0.0.1:9001
[…]
Caused by: java.net.BindException: Address already in use: bind

I guess there’s some zombie process from a former installation attempt !?

Check the details via cmd =

netstat -aon | find "9001" this will give you the process id

Then you may use
tasklist /FI "pid eq <pid>" to get the process id details first or kill the process straight via
taskkill /F /pid <pid>

and try again.

Gilbert