Home > Blockchain >  Problem when running elastic search on windows 10
Problem when running elastic search on windows 10

Time:01-19

when i am running elastic search on windows 10 , i can not open elastic portal in the local host and i got this message : { "name" : "ISBUS-PC02", "cluster_name" : "elasticsearch", "cluster_uuid" : "FE38HTACR2evmiVFD7ciag", "version" : { "number" : "8.6.0", "build_flavor" : "default", "build_type" : "zip", "build_hash" : "f67ef2df40237445caa70e2fef79471cc608d70d", "build_date" : "2023-01-04T09:35:21.782467981Z", "build_snapshot" : false, "lucene_version" : "9.4.2", "minimum_wire_compatibility_version" : "7.17.0", "minimum_index_compatibility_version" : "7.0.0" }, "tagline" : "You Know, for Search" }

nothing, because this is the last issue i stucked on.

CodePudding user response:

This JSON you provided means Elasticsearch is up and running perfectly fine. You can note in the JSON response, Elasticsearch cluster name, version, build type and other information is also provided.

{
    "name": "ISBUS-PC02",
    "cluster_name": "elasticsearch",
    "cluster_uuid": "FE38HTACR2evmiVFD7ciag",
    "version":
    {
        "number": "8.6.0",
        "build_flavor": "default",
        "build_type": "zip",
        "build_hash": "f67ef2df40237445caa70e2fef79471cc608d70d",
        "build_date": "2023-01-04T09:35:21.782467981Z",
        "build_snapshot": false,
        "lucene_version": "9.4.2",
        "minimum_wire_compatibility_version": "7.17.0",
        "minimum_index_compatibility_version": "7.0.0"
    },
    "tagline": "You Know, for Search"
}

You don't have to worry, your Elasticsearch cluster is up and running and you can execute other requests.

  • Related