Monitor Elasticsearch with X-Pack Monitoring. First install X-Pack onto Elasticsearch and configure security if you’re using X-Pack’s security features. Then come back here for instructions on installing and configuring Kibana (the monitoring server) with X-Pack so that Elasticsearch (secured with X-Pack), Kibana (secured with X-Pack), and Liferay DXP can communicate effortlessly and securely. A Liferay Enterprise Search subscription is necessary for this integration. Contact Liferay’s Sales department for more information.
-
Tell Elasticsearch to enable data collection.
-
Download and install Kibana.
-
Configure Kibana with the proper security settings.
-
Install the Liferay Enterprise Search Monitoring.
-
Configure the connector to communicate with Elasticsearch.
This document assumes you’re enabling security and monitoring, though differences in the process are noted as appropriate.
Start by enabling data collection in Elasticsearch.
Enable Data Collection
Monitoring is enabled on Elasticsearch by default, but data collection isn’t.
Enable data collection by adding this line to elasticsearch.yml
.
xpack.monitoring.collection.enabled: true
Now install Kibana.
Install Kibana
Make sure to install the correct version of Kibana. Check the Liferay Enterprise Search compatibility matrix for details.
-
Download Kibana and extract it. The root folder is referred to as Kibana Home.
-
Tell Kibana where to send monitoring data by setting Elasticsearch’s URL in
kibana.yml
:elasticsearch.url: "http://localhost:9200"
If SSL is enabled on Elasticsearch, this is an
https
URL. -
If not using X-Pack security, start Kibana by opening a command prompt to Kibana Home and entering this command:
./bin/kibana
If you’re using X-Pack’s security features on the Elasticsearch server, there’s additional configuration required before starting Kibana.
Configure Kibana with Authentication
If X-Pack requires authentication to access the Elasticsearch cluster, follow these steps or refer to Elastic’s documentation.
-
Set the password for the built-in
kibana
user in[Kibana Home]/config/kibana.yml
:elasticsearch.username: "kibana" elasticsearch.password: "liferay"
Use your
kibana
user password from your X-Pack setup. Once Kibana is installed, you can change the built-in user passwords from the Management user interface. -
If you’re not encrypting communication with the Elasticsearch cluster, start Kibana from Kibana home.
./bin/kibana
-
Go to
localhost:5601
and make sure you can sign in as a user who has thekibana_user
role or a superuser (like theelastic
user).
Configuring Kibana with Encryption
Follow these steps to configure Kibana if X-Pack encrypts communication with the Elasticsearch cluster. Consult Elastic’s guide for more information.
Add these settings to kibana.yml
:
xpack.security.encryptionKey: "xsomethingxatxleastx32xcharactersx"
xpack.security.sessionTimeout: 600000
elasticsearch.ssl.verificationMode: certificate
elasticsearch.url: "https://localhost:9200"
elasticsearch.ssl.certificateAuthorities: [ "/path/to/ca.crt" ]
server.ssl.enabled: true
server.ssl.certificate: /path/to/[Elasticsearch Home]/config/localhost.crt
server.ssl.key: /path/to/[Elasticsearch Home]/config/localhost.key
For more information about monitoring and security best practices in a clustered environment, refer to Elastic’s documentation.
After this step you can access Kibana at https://localhost:5601
and sign in
with a Kibana user. The last step is to connect Kibana to Liferay DXP.
Configuring the Liferay Enterprise Search Monitoring App
If you have a Liferay Enterprise Search (Premium or Standard) subscription,
download the Liferay Enterprise Search Monitoring app. Install
the LPKG file by copying it into the Liferay Home/deploy
folder.
-
Once the connector is installed and Kibana and Elasticsearch are securely configured, create a configuration file named
com.liferay.portal.search.elasticsearch6.xpack.monitoring.web.internal.configuration.XPackMonitoringConfiguration.config
-
Place these settings in the
.config
file:kibanaPassword="liferay" kibanaUserName="elastic" kibanaURL="http://localhost:5601"
The values depend on your Kibana configuration. For example, use a secure URL such as
kibanaURL="https://localhost:5601"
if you’re using X-Pack Security features.Alternatively, configure the monitoring adapter from System Settings. Navigate to Control Panel → Configuration → System Settings and find the X-Pack Monitoring entry in the Search category. All the configuration options for the monitoring connector appear there.
-
Deploy this configuration file to
Liferay Home/osgi/configs
, and your running instance applies the settings. There’s no need to restart the server. -
There are two more settings to add to Kibana itself. The first forbids Kibana from rewriting requests prefixed with
server.basePath
. The second sets Kibana’s base path for the Monitoring portlet to act as a proxy for Kibana’s monitoring UI. Add this tokibana.yml
:server.rewriteBasePath: false server.basePath: "/o/portal-search-elasticsearch-xpack-monitoring/xpack-monitoring-proxy"
Note that once you set the
server.basePath
, you cannot access the Kibana UI through Kibana’s URL (e.g.,https://localhost:5601
). All access to the Kibana UI is through the Monitoring portlet, which is only accessible to signed in Liferay DXP users. Navigate directly to the portlet using this URL: -
Because you’re using the Monitoring portlet in Liferay DXP as a proxy to Kibana’s UI, if you are using X-Pack Security, you must configure the application server’s startup JVM parameters to recognize a valid truststore and password.
First, navigate to Elasticsearch Home and generate a PKSC#12 certificate from the CA you created when setting up X-Pack security:
./bin/elasticsearch-certutil cert --ca-cert /path/to/ca.crt --ca-key /path/to/ca.key --ip 127.0.0.1 --dns localhost --name localhost --out /path/to/Elasticsearch_Home/config/localhost.p12
Next use the
keytool
command to generate a truststore:keytool -importkeystore -deststorepass liferay -destkeystore /path/to/truststore.jks -srckeystore /path/to/Elasticsearch_Home/config/localhost.p12 -srcstoretype PKCS12 -srcstorepass liferay
Add the trustore path and password to your application server’s startup JVM parameters. Here are example truststore and path parameters for appending to a Tomcat server’s
CATALINA_OPTS
:-Djavax.net.ssl.trustStore=/path/to/truststore.jks -Djavax.net.ssl.trustStorePassword=liferay
Restart Liferay DXP and Kibana.
Monitoring in Liferay DXP
Once Kibana and X-Pack are successfully installed and configured and all the servers are running, add the X-Pack Monitoring portlet to a page:
-
Open the Add menu on a page and choose Widgets
-
Search for monitoring and drag the X-Pack Monitoring widget from the Search category onto the page.
See the Elastic documentation for information on monitoring Elasticsearch.