···64646565## Development Quickstart
66666767-Run an ephemeral opensearch instance on local port 9200, with SSL disabled, and the `analysis-icu` plugin installed, using docker:
6767+Run an ephemeral opensearch instance on local port 9200, with SSL disabled, and the `analysis-icu` and `analysis-kuromoji` plugins installed, using docker:
68686969 docker build -f Dockerfile.opensearch . -t opensearch-palomar
7070- docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e "plugins.security.disabled=true" opensearch-palomar
7070+7171+ # in any non-development system, obviously change this default password
7272+ docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e "plugins.security.disabled=true" -e OPENSEARCH_INITIAL_ADMIN_PASSWORD=0penSearch-Pal0mar opensearch-palomar
71737274See [README.opensearch.md]() for more Opensearch operational tips.
7375
+3-1
cmd/palomar/README.opensearch.md
···1122# Basic OpenSearch Operations
3344-We use OpenSearch version 2.5+, with the `analysis-icu` plugin. This is included automatically on the AWS hosted version of Opensearch, otherwise you need to install:
44+We use OpenSearch version 2.13+, with the `analysis-icu` and `analysis-kuromoji` plugins. These are included automatically on the AWS hosted version of Opensearch, otherwise you need to install:
5566 sudo /usr/share/opensearch/bin/opensearch-plugin install analysis-icu
77+ sudo /usr/share/opensearch/bin/opensearch-plugin install analysis-kuromoji
78 sudo service opensearch restart
89910If you are trying to use Elasticsearch 7.10 instead of OpenSearch, you can install the plugin with:
10111112 sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-icu
1313+ sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-kuromoji
1214 sudo service elasticsearch restart
13151416## Local Development