Skip to main content
Version: 6.10.1

Integration of Data Stores with the Portal

Elasticsearch host and port

If the user chooses to install/run Elasticsearch on a remote system - then the hostname/IP and port details need to be updated in application.properties as follows:

elasticsearch.cluster.urls=http://<elasticsearch host or IP>:<elasticsearch port>

Elasticsearch over SSL

If the user chooses to configure Elasticsearch to run with SSL - the application will need to be updated as follows:

elasticsearch.cluster.urls=https://<elasticsearch host or IP>:<elasticsearch port>

If the user chooses to configure Elasticsearch to run without SSL - the application.properties will need to be updated as follows:

elasticsearch.cluster.urls=http://<elasticsearch host or IP>:<elasticsearch port>

The following application properties written in the application.properties file are used to establish the connection from the Portal to a Elasticsearch cluster, with their default values:

elasticsearch.cluster.urls=http://localhost:9200
elasticsearch.cluster.username=mconsole
elasticsearch.cluster.password=Mconsole123
elasticsearch.cluster.idxPrefix=event

See Create application.properties for instructions on how to create this file.