mirror of
https://github.com/iSharkFly-Docs/opensearch-docs-cn
synced 2025-02-17 00:36:13 +00:00
Add note about enabling compatibility setting during upgrade
This commit is contained in:
parent
ecea83707d
commit
34068f01bd
@ -27,6 +27,12 @@ PUT _cluster/settings
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
[Just like any other setting]({{site.url}}{{site.baseurl}}/opensearch/configuration/), the alternative is to add the following line to `opensearch.yml` on each node and then restart the node:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
compatibility.override_main_response_version: true
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Downloads
|
## Downloads
|
||||||
|
|
||||||
|
@ -144,6 +144,12 @@ If you are upgrading an Open Distro for Elasticsearch cluster, we recommend firs
|
|||||||
|
|
||||||
1. Port your settings from `elasticsearch.yml` to `opensearch.yml`. Most settings use the same names. At a minimum, specify `cluster.name`, `node.name`, `discovery.seed_hosts`, and `cluster.initial_master_nodes`.
|
1. Port your settings from `elasticsearch.yml` to `opensearch.yml`. Most settings use the same names. At a minimum, specify `cluster.name`, `node.name`, `discovery.seed_hosts`, and `cluster.initial_master_nodes`.
|
||||||
|
|
||||||
|
1. (Optional) If you're actively connecting to the cluster with legacy clients that check for a particular version number, such as Logstash OSS, add a [compatibility setting]({{site.url}}{{site.baseurl}}/clients/agents-and-ingestion-tools/) to `opensearch.yml`:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
compatibility.override_main_response_version: true
|
||||||
|
```
|
||||||
|
|
||||||
1. (Optional) Add your certificates to your `config` directory, add them to `opensearch.yml`, and initialize the security plugin.
|
1. (Optional) Add your certificates to your `config` directory, add them to `opensearch.yml`, and initialize the security plugin.
|
||||||
|
|
||||||
1. Start OpenSearch on the node (rolling) or all nodes (cluster restart).
|
1. Start OpenSearch on the node (rolling) or all nodes (cluster restart).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user