Hi community,
I try to reindex from remote elasticsearch but i got err response.
Here is what I run in kibana dev tool,
POST _reindex
{
"source": {
"remote": {
"host": "https://anotherhost:443",
"socket_timeout": "1m",
"connect_timeout": "10s"
},
"index": "old-2019.01",
"query": {
"match_all": {}
}
},
"dest": {
"index": "new-2019.01"
}
}
and this is response
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "[anotherhost:443] not whitelisted in reindex.remote.whitelist"
}
],
"type": "illegal_argument_exception",
"reason": "[anotherhost:443] not whitelisted in reindex.remote.whitelist"
},
"status": 400
}
plz advise how to fix this.

...