Hi, everyone.
I'm trying to upgrade ES from 5.4.0 to 6.8.0.
According to official documents, I execute this method after upgrade:
curl -XPUT -H "Content-Type:application/json" 172.16.1.133:9200/_cluster/settings -d'
{
"persistent": {
"cluster.routing.allocation.enable": null
}
}
'
And I got error:
{"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"unknown setting [archived.xpack.security.transport.filter.deny] please check that any required plugins are installed, or check the breaking changes documentation for removed settings"}],"type":"illegal_argument_exception","reason":"unknown setting [archived.xpack.security.transport.filter.deny] please check that any required plugins are installed, or check the breaking changes documentation for removed settings"},"status":400}
How can I solve this problem?
Thanks and regards!