You're viewing version 2.13 of the OpenSearch documentation. This version is no longer maintained. For the latest version, see the current documentation. For information about OpenSearch version maintenance, see Release Schedule and Maintenance Policy.
Windows
The following sections describe installing OpenSearch on Windows from a zip archive.
Generally speaking, the installation of OpenSearch from a zip archive can be broken down into a few steps:
- Download and unpack OpenSearch.
- (Optional) Test OpenSearch.
- Confirm that OpenSearch is able to run before you apply any custom configuration.
- This can be done without any security (no password, no certificates) or with a demo security configuration that can be applied by a packaged script.
- Configure OpenSearch for your environment.
- Apply basic settings to OpenSearch and start using it in your environment.
The Windows OpenSearch archive is a self-contained directory with everything needed to run OpenSearch, including an integrated Java Development Kit (JDK). If you have your own Java installation and set the environment variable JAVA_HOME
, OpenSearch will use that installation if the OPENSEARCH_JAVA_HOME
environment variable is not set. To learn how to set the OPENSEARCH_JAVA_HOME
environment variable, see Step 3: Set up OpenSearch in your environment.
Prerequisites
Make sure you have a zip utility installed.
Step 1: Download and unpack OpenSearch
Perform the following steps to install OpenSearch on Windows.
- Download the
opensearch-2.13.0-windows-x64.zip
archive. - To extract the archive contents, right-click to select Extract All.
Step 2: (Optional) Test OpenSearch
Before proceeding with any configuration, you should test your installation of OpenSearch. Otherwise, it can be difficult to determine whether future problems are due to installation issues or custom settings you applied after installation. There are two quick methods for testing OpenSearch at this stage:
- (Security enabled) Apply a generic configuration using the batch script included in the Windows archive.
- (Security disabled) Manually disable the Security plugin and test the instance before applying your own custom security settings.
The batch script will apply a generic configuration to your instance of OpenSearch. This configuration defines some environment variables and also applies self-signed TLS certificates. Alternatively, you can choose to configure these yourself.
If you only want to verify that the service is properly configured and you intend to configure security settings yourself, then you may want to disable the Security plugin and launch the service without encryption or authentication.
An OpenSearch node in its default configuration (with demo certificates and users with default passwords) is not suitable for a production environment. If you plan to use the node in a production environment, you should, at a minimum, replace the demo TLS certificates with your own TLS certificates and update the list of internal users and passwords. See Security configuration for additional guidance to ensure that your nodes are configured according to your security requirements.
Option 1: Test your OpenSearch settings with security enabled
-
Run the demo batch script from Command prompt or Powershell.
- Open Command Prompt by entering
cmd
or Powershell by enteringpowershell
in the search box next to Start on the taskbar. - Change to the top directory of your OpenSearch installation.
cd \path\to\opensearch-2.13.0
- Run the batch script. For OpenSearch 2.12 or later, use the following command to specify a custom admin password:
> set OPENSEARCH_INITIAL_ADMIN_PASSWORD=<custom-admin-password>
.\opensearch-windows-install.bat
- Open Command Prompt by entering
-
Open a new command prompt and send requests to the server to verify that OpenSearch is running. Note the use of the
--insecure
flag, which is required because the TLS certificates are self-signed.- Send a request to port 9200:
curl.exe -X GET https://localhost:9200 -u "admin:<custom-admin-password>" --insecure
You should get a response that looks like this:
{ "name" : "hostname-here", "cluster_name" : "opensearch", "cluster_uuid" : "7Nqtr0LrQTOveFcBb7Kufw", "version" : { "distribution" : "opensearch", "number" : <version>, "build_type" : <build-type>, "build_hash" : <build-hash>, "build_date" : <build-date>, "build_snapshot" : false, "lucene_version" : <lucene-version>, "minimum_wire_compatibility_version" : "7.10.0", "minimum_index_compatibility_version" : "7.0.0" }, "tagline" : "The OpenSearch Project: https://opensearch.org/" }
- Query the plugins endpoint:
curl.exe -X GET https://localhost:9200/_cat/plugins?v -u "admin:<custom-admin-password>" --insecure
The response should look like this:
hostname opensearch-alerting 2.13.0 hostname opensearch-anomaly-detection 2.13.0 hostname opensearch-asynchronous-search 2.13.0 hostname opensearch-cross-cluster-replication 2.13.0 hostname opensearch-geospatial 2.13.0 hostname opensearch-index-management 2.13.0 hostname opensearch-job-scheduler 2.13.0 hostname opensearch-knn 2.13.0 hostname opensearch-ml 2.13.0 hostname opensearch-neural-search 2.13.0 hostname opensearch-notifications 2.13.0 hostname opensearch-notifications-core 2.13.0 hostname opensearch-observability 2.13.0 hostname opensearch-reports-scheduler 2.13.0 hostname opensearch-security 2.13.0 hostname opensearch-security-analytics 2.13.0 hostname opensearch-sql 2.13.0
- Send a request to port 9200:
Option 2: Test your OpenSearch settings with security disabled
- Open the
opensearch-2.13.0\config
folder. - Open the
opensearch.yml
file with a text editor. - Add the following line to disable the Security plugin:
plugins.security.disabled: true
- Save the change and close the file.
- Navigate to the top directory of your OpenSearch installation and open the
opensearch-2.13.0
folder. - Run the default by double-clicking the
opensearch-windows-install.bat
file. This opens a command prompt with an OpenSearch instance running. - Open a new command prompt and send requests to the server to verify that OpenSearch is running. Because the Security plugin has been disabled, you will be sending commands using
HTTP
rather thanHTTPS
.- Send a request to port 9200:
curl.exe -X GET http://localhost:9200
You should get a response that looks like this:
{ "name" : "hostname-here", "cluster_name" : "opensearch", "cluster_uuid" : "7Nqtr0LrQTOveFcBb7Kufw", "version" : { "distribution" : "opensearch", "number" : "2.4.0", "build_type" : "zip", "build_hash" : "77ef9e304dd6ee95a600720a387a9735bbcf7bc9", "build_date" : "2022-11-05T05:50:15.404072800Z", "build_snapshot" : false, "lucene_version" : "9.4.1", "minimum_wire_compatibility_version" : "7.10.0", "minimum_index_compatibility_version" : "7.0.0" }, "tagline" : "The OpenSearch Project: https://opensearch.org/" }
- Query the plugins endpoint:
curl.exe -X GET http://localhost:9200/_cat/plugins?v
The response should look like this:
hostname opensearch-alerting 2.13.0 hostname opensearch-anomaly-detection 2.13.0 hostname opensearch-asynchronous-search 2.13.0 hostname opensearch-cross-cluster-replication 2.13.0 hostname opensearch-geospatial 2.13.0 hostname opensearch-index-management 2.13.0 hostname opensearch-job-scheduler 2.13.0 hostname opensearch-knn 2.13.0 hostname opensearch-ml 2.13.0 hostname opensearch-neural-search 2.13.0 hostname opensearch-notifications 2.13.0 hostname opensearch-notifications-core 2.13.0 hostname opensearch-observability 2.13.0 hostname opensearch-reports-scheduler 2.13.0 hostname opensearch-security 2.13.0 hostname opensearch-security-analytics 2.13.0 hostname opensearch-sql 2.13.0
- Send a request to port 9200:
To stop OpenSearch, press Ctrl+C
in Command Prompt or Powershell, or simply close the Command Prompt or Powershell window.
Step 3: Set up OpenSearch in your environment
Users who do not have prior experience with OpenSearch may want a list of recommended settings in order to get started with the service. By default, OpenSearch is not bound to a network interface and cannot be reached by external hosts. Additionally, security settings are either undefined (greenfield install) or populated by default usernames and passwords if you ran the security demo script by invoking opensearch-windows-install.bat
. The following recommendations will enable a user to bind OpenSearch to a network interface.
The following recommended settings will allow you to:
- Bind OpenSearch to an IP or network interface on the host.
- Set initial and maximum JVM heap sizes.
- Define an environment variable that points to the bundled JDK.
If you ran the security demo script, then you will need to manually reconfigure settings that were modified. Refer to Security configuration for guidance before proceeding.
Before modifying any configuration files, it’s always a good idea to save a backup copy before making changes. The backup file can be used to revert any issues caused by a bad configuration.
- Open the
opensearch-2.13.0\config
folder. - Open the
opensearch.yml
file with a text editor. - Add the following lines:
# Bind OpenSearch to the correct network interface. Use 0.0.0.0 # to include all available interfaces or specify an IP address # assigned to a specific interface. network.host: 0.0.0.0 # Unless you have already configured a cluster, you should set # discovery.type to single-node, or the bootstrap checks will # fail when you try to start the service. discovery.type: single-node # If you previously disabled the Security plugin in opensearch.yml, # be sure to re-enable it. Otherwise you can skip this setting. plugins.security.disabled: false
- Save your changes and close the file.
- Specify initial and maximum JVM heap sizes.
- Open the
opensearch-2.13.0\config
folder. - Open the
jvm.options
file with a text editor. - Modify the values for initial and maximum heap sizes. As a starting point, you should set these values to half of the available system memory. For dedicated hosts this value can be increased based on your workflow requirements.
As an example, if the host machine has 8 GB of memory, then you might want to set the initial and maximum heap sizes to 4 GB:-Xms4g -Xmx4g
- Save your changes and close the file.
- Open the
- Specify the location of the included JDK.
- In the search box next to Start on the taskbar, enter
edit environment variables for your account
oredit the system environment variables
. To edit the system environment variables, you need admin rights. User environment variables take precedence over system environment variables. - Select Edit environment variables for your account or Edit the system environment variables.
- If the System Properties dialog opens, in the Advanced tab, select Environment Variables.
- Under User variables or System variables, select New.
- In Variable name, enter
OPENSEARCH_JAVA_HOME
. - In Variable value, enter
\path\to\opensearch-2.13.0\jdk
. - Select OK to close all dialogs.
- In the search box next to Start on the taskbar, enter
Plugin compatibility
The Performance Analyzer plugin is not available on Windows. All other OpenSearch plugins, including the k-NN plugin, are available. For a complete list of plugins, see Available plugins.