简体   繁体   中英

Elasticsearch installation error: No such file or directory

I'm using a linux machine. The Elasticsearch installation guide told me to simply download and unzip the file, and then run bin/elasticsearch . But when I ran it, I got this error:

$ bin/elasticsearch
-bash: bin/elasticsearch: No such file or directory

I can clearly see the elasticsearch file in my home directory, and all the files within it seem intact. What do I do?

If you are trying to access the file with:

bin/elasticsearch 

You get the error.

Try to tell the full route.

First move to the directory with cd

cd route/to/your/directory

Then use . for calling from your actual position:

./bin/elasticsearch

Note: If you get an error about the access or something similar, try giving execution permission to your file:

chmod u+x ./bin/elasticsearch

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