简体   繁体   中英

How to setup Elasticsearch server on remote Ubuntu server?

I have purchased space of 1Gb Ubuntu server to deploy my Elasticsearch Application. I followed the guide below to deploy Elasticsearch server.
Link to guide
Now whenever I try to access Elasticsearch server using a curl command, it shows the following error

curl: (7) Failed to connect to 0.0.0.0 port 9200: Connection refused

Here is the curl command I tried

curl -XGET '0.0.0.0:9200/?pretty'

Which step could I have missed or is not shown in the guide? Thank you

Is your elasticsearch service running?

Check with the following command

systemctl status elasticsearch

If it is not running try to start it with

systemctl start elasticsearch

After a few minutes check if it is still running or crashed using systemctl status elasticsearch . If it has crashed please add more details to your question.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM