На первый взгляд некорректная папка упругого поиска - PullRequest
0 голосов
/ 19 февраля 2019

Я загрузилasticsearch с https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.6.0.zip.

Кажется, папка неверная или я что-то не так делаю.

Я открыл папку, но:

  1. Я не вижу ни одного исполняемого файла X86, хотя я нахожусь на 32-битном ПК, и имя папки (директории) elasticsearch-7.0.0-beta1-windows-x86_64. Когда я открываю извлеченную папку, я вижу следующее:

    Снимок загруженной папкиasticsearch bin

  2. Кроме того, когда я запускаю bin\elasticsearch.bat, я получаю пустую консоль. Абсолютно ничего не отображается. Консольпусто.

  3. В соответствии с https://www.elastic.co/downloads/elasticsearch,I'm предполагается Run curl http://localhost:9200/ or Invoke-RestMethod http://localhost:9200 with PowerShell, ни один из них не работает, когда я пробую оба из них, я получаю это: Ошибки, отображаемые в Powershell

Это ошибки:

Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. All rights reserved.

PS C:\Users\o.o amoo> curl http://localhost:9200/^Vcurl http://localhost:9200/curl http://localhost:9200/curl http://loc
alhost:9200/curl http://localhost:9200/^V
The term 'curl' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli
ng of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:5
+ curl <<<<  http://localhost:9200/▬curl http://localhost:9200/curl http://localhost:9200/curl http://localhost:9200/cu
rl http://localhost:9200/▬
    + CategoryInfo          : ObjectNotFound: (curl:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\o.o amoo> curl
The term 'curl' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli
ng of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:5
+ curl <<<<
    + CategoryInfo          : ObjectNotFound: (curl:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\o.o amoo> Invoke-RestMethod http://localhost:9200
The term 'Invoke-RestMethod' is not recognized as the name of a cmdlet, function, script file, or operable program. Che
ck the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:18
+ Invoke-RestMethod <<<<  http://localhost:9200
    + CategoryInfo          : ObjectNotFound: (Invoke-RestMethod:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\o.o amoo>
PS C:\Users\o.o amoo>
PS C:\Users\o.o amoo>
PS C:\Users\o.o amoo>

Пожалуйста, помогите, я так расстроен.

1 Ответ

0 голосов
/ 19 февраля 2019

Шаг 1: (Наиболее важный)

Убедитесь, что вы проверили, установлена ​​ли Java в вашей системе или нет (cmd> java -version), и установите JAVA_HOME в качестве пути Jdk в переменных среды.

Шаг 2:

Открыть командную строку с правами администратора:

cmd> cd paste_folder_path / bin /asticsearch.bat
//Это запустит серверasticsearch.

Шаг 3:

localhost: 9200

Если это не сработает, попробуйте использовать версиюasticsearch6.6.0 ... Вы пытаетесь использовать бета-версию, которая все еще может содержать ошибки, что может вызвать некоторые проблемы.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...