I\'ve recently installed Elasticsearch and everything was working well for the first few days, but somehow today it stopped working
When I start the service, it claims t
curl -GET http://127.0.0.1:9200 is the wrong command.
curl -GET http://127.0.0.1:9200
Try curl -XGET http://127.0.0.1:9200. It should return the short info about your running local node and status 200. If that doesn't work then something else must be wrong.
curl -XGET http://127.0.0.1:9200