Docker + elasticsearc +whitelist

Здраствуйте!

А я правильно указала удаленый эластик?
В elasticsearch.yml :

 reindex.remote.whitelist: relastic1:9200
  • не работает для реиндекса

Ошибка:

    > {
   "error": {
      "root_cause": [
         {
            "type": "illegal_argument_exception",
            "reason": "[relastic1:9200] not whitelisted in reindex.remote.whitelist"
         }
      ],
      "type": "illegal_argument_exception",
      "reason": "[relastic1:9200] not whitelisted in reindex.remote.whitelist"
   },
   "status": 400
}

При запуске докера :

-e "reindex.remote.whitelist: relastic1:9200"

тоже самое

Разобралась. Дело было вreindex.remote.whitelist= relastic1:9200

Но теперь новый эксепшн:

{
   "error": {
      "root_cause": [
         {
            "type": "s_s_l_exception",
            "reason": "Unrecognized SSL message, plaintext connection?"
         }
      ],
      "type": "s_s_l_exception",
      "reason": "Unrecognized SSL message, plaintext connection?"
   },
   "status": 500
}

И с этим разобралась .
http заменить на https

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.