remote_client_key
注意
此选项仅在执行远程重索引操作时由 Reindex 操作使用。
这应该是客户端密钥(私钥)的文件路径,或者留空。
actions:
1:
description: "Reindex index1 into index2"
action: reindex
options:
wait_interval: 9
max_wait: -1
remote_certificate: /path/to/my/ca.cert
remote_client_cert: /path/to/my/client.cert
remote_client_key: /path/to/my/client.key
request_body:
source:
remote:
host: https://otherhost:9200
index: index1
dest:
index: index2
filters:
- filtertype: none
允许使用指定的 SSL 客户端密钥文件向 Elasticsearch 进行身份验证。如果使用 client_cert
并且指定的文件不包含密钥,请使用 client_key
指定包含 SSL 密钥的文件。密钥文件必须是 PEM 格式的未加密密钥。