Legacy Knowledge Base
Published Jun. 30, 2025

How to install Elasticsearch plugins in offline mode

Written By

Georgel Pop

How To articles are not official guidelines or officially supporteddocumentation. They are community-contributed content and may not alwaysreflect the latest updates to Liferay DXP. We welcome your feedback toimprove How to articles!

While we make every effort to ensure this Knowledge Base is accurate, itmay not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with anyfeedback or concerns.

Legacy Article

You are viewing an article from our legacy "FastTrack"publication program, made available for informational purposes. Articlesin this program were published without a requirement for independentediting or verification and are provided "as is" withoutguarantee.

Before using any information from this article, independently verify itssuitability for your situation and project.

Issue

  • Sometimes customers don't have internet connection on their Production environments and want to install in offline mode the required Elasticsearch plugins:
    analysis-icu, analysis-kuromoji, analysis-smartcn, analysis-stempel

Environment

  • DXP 7.0 or higher

Resolution

  • We will take analysis-icu as example on how to install it offline (for more details, please see Installing elasticsearch)
  • First you need to download the correct plugin version, replacing x.x.x (for example: 7.17.9) in the above URL, with the exact Elasticsearch version you use: https://artifacts.elastic.co/downloads/elasticsearch-plugins/analysis-icu/analysis-icu-x.x.x.zip
  • Once downloaded, add this plugin to your server and use this command to install it offline, replace ${/path/to/plugin.zip} with the correct path:
    • Linux OS:
      sudo bin elasticsearch plugin install file://${/path/to/plugin.zip}
    • Windows OS:
      bin\elasticsearch-plugin install file:///${C:/path/to/plugin.zip}

Additional Information

Did this article resolve your issue ?

Legacy Knowledge Base