Login
Remember
Register
Ask a Question
Can you please give step by step procedures to start an Elasticsearch server?
+1
vote
asked
Feb 24, 2023
in
ElasticSearch
by
rajeshsharma
Can you please give step by step procedures to start an Elasticsearch server?
elasticsearch
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 24, 2023
by
rajeshsharma
The server can be started from the command line.
Following steps explain the process:
Click on the Windows Start icon present at the bottom-left part of the desktop screen.
Type command or cmd in the Windows Start menu and press Enter to open a command prompt.
Change the directory up to the bin folder of the Elasticsearch folder that got created after it has been installed.
Type /Elasticsearch.bat and press Enter to start the Elasticsearch server.
This will start Elasticsearch on command prompt in the background. Further open browser and enter http://localhost:9200 and press enter. This should display the Elasticsearch cluster name and other meta value related to its database.
...