mirror of
https://github.com/iSharkFly-Docs/opensearch-docs-cn
synced 2025-03-08 06:39:29 +00:00
* Fix APIs File Signed-off-by: samipak458 <samipak458@gmail.com> * Update API files according to API template Signed-off-by: samipak458 <samipak458@gmail.com> * Update exec-stored-script.md Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com> * Update cat-aliases.md Signed-off-by: MUHAMMAD SAMIULLAH <samipak458@gmail.com> * Update cat-allocation.md Signed-off-by: MUHAMMAD SAMIULLAH <samipak458@gmail.com> * Update cat-cluster_manager.md Signed-off-by: MUHAMMAD SAMIULLAH <samipak458@gmail.com> * Update cat-count.md Signed-off-by: MUHAMMAD SAMIULLAH <samipak458@gmail.com> * Update cat-field-data.md Signed-off-by: MUHAMMAD SAMIULLAH <samipak458@gmail.com> * Update cat-health.md Signed-off-by: MUHAMMAD SAMIULLAH <samipak458@gmail.com> * updated * updated * updated --------- Signed-off-by: samipak458 <samipak458@gmail.com> Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com> Signed-off-by: MUHAMMAD SAMIULLAH <samipak458@gmail.com> Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
70 lines
1.5 KiB
Markdown
70 lines
1.5 KiB
Markdown
---
|
|
layout: default
|
|
title: Nodes reload secure settings
|
|
parent: Nodes APIs
|
|
nav_order: 50
|
|
---
|
|
|
|
# Nodes reload secure settings
|
|
**Introduced 1.0**
|
|
{: .label .label-purple }
|
|
|
|
The nodes reload secure settings endpoint allows you to change secure settings on a node and reload the secure settings without restarting the node.
|
|
|
|
## Path and HTTP methods
|
|
|
|
```
|
|
POST _nodes/reload_secure_settings
|
|
POST _nodes/<nodeId>/reload_secure_settings
|
|
```
|
|
|
|
## Path parameter
|
|
|
|
You can include the following optional path parameter in your request.
|
|
|
|
Parameter | Type | Description
|
|
:--- | :--- | :---
|
|
nodeId | String | A comma-separated list of nodeIds used to filter results. Supports [node filters]({{site.url}}{{site.baseurl}}/api-reference/nodes-apis/index/#node-filters). Defaults to `_all`.
|
|
|
|
## Request fields
|
|
|
|
The request may include an optional object containing the password for the OpenSearch keystore.
|
|
|
|
```json
|
|
{
|
|
"secure_settings_password": "keystore_password"
|
|
}
|
|
```
|
|
|
|
#### Example request
|
|
|
|
The following is an example API request:
|
|
|
|
```
|
|
POST _nodes/reload_secure_settings
|
|
```
|
|
{% include copy-curl.html %}
|
|
|
|
#### Example response
|
|
|
|
The following is an example response:
|
|
|
|
```json
|
|
{
|
|
"_nodes" : {
|
|
"total" : 1,
|
|
"successful" : 1,
|
|
"failed" : 0
|
|
},
|
|
"cluster_name" : "opensearch-cluster",
|
|
"nodes" : {
|
|
"t7uqHu4SSuWObK3ElkCRfw" : {
|
|
"name" : "opensearch-node1"
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
## Required permissions
|
|
|
|
If you use the Security plugin, make sure you set the following permissions: `cluster:manage/nodes`. |