remote_client_cert
编辑remote_client_cert编辑
此选项仅在执行远程重建索引操作时由 重建索引操作 使用。
这应该是客户端证书(公钥)的文件路径,或者留空。
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 进行身份验证。该文件可能同时包含 SSL 客户端证书和 SSL 密钥,在这种情况下,不使用 client_key。如果指定了 client_cert
,并且指定的文件不包含密钥,请使用 client_key 指定包含 SSL 密钥的文件。该文件必须为 PEM 格式,并且密钥部分(如果使用)也必须为 PEM 格式的未加密密钥。