org.elasticsearch.bootstrap.StartupException: BindHttpException[Failed to bind to [9200]]; nested: BindException[地址已在使用];
由于你的端口被占用
可以查看自己端口的使用情况
netstat -alnp | grep 9200
然后清掉对应的进程即可
kill -9 1252
重新启动es即可成功
org.elasticsearch.bootstrap.StartupException: BindHttpException[Failed to bind to [9200]]; nested: BindException[地址已在使用];
由于你的端口被占用
可以查看自己端口的使用情况
netstat -alnp | grep 9200
然后清掉对应的进程即可
kill -9 1252
重新启动es即可成功