Try OpenEdge Now
skip to main content
New Information
Progress Application Server for OpenEdge : Troubleshoot problems : Centralized logging in PAS for OpenEdge : Set up Elasticsearch
 
Set up Elasticsearch

Install and start Elasticsearch

You can either install Elasticsearch on-premise or use the Elasticsearch Cloud Service. If you are installing it on-premise, you need to have Java 8 on the host machine before you begin installation.
Download the Elasticsearch installation package for your operating system from the Elasticsearch downloads page.
Then, install and start Elasticsearch by following the instructions for your operating system as described in the Elasticsearch installation documentation.

Verify that Elasticsearch is running

After you start Elasticsearch, you can verify that it is running by sending an HTTP request to localhost:9200 on the host machine. You should see a response that looks like this:
{
"name" : "fgzodeC",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "t0gobiyRQ2Wh_h4gWOCGGg",
"version" : {
"number" : "6.4.0",
"build_flavor" : "default",
"build_type" : "zip",
"build_hash" : "595516e",
"build_date" : "2018-08-17T23:18:47.308994Z",
"build_snapshot" : false,
"lucene_version" : "7.4.0",
"minimum_wire_compatibility_version" : "5.6.0",
"minimum_index_compatibility_version" : "5.0.0"
},
"tagline" : "You Know, for Search"
}
For more information on configuring Elasticsearch, see the Configuring Elasticsearch documentation.