Observability Practice Exam: No locations in UserExperience App

Course: Elastic Observability Practice Exam
Version: 8
Question: in the practice exam environment, in the UserExperience App, the locations number is 0, there is also no locations shown on the map, so the last question in exercise 9 can't be answered. Why does this happen?
Thank you.

Hi @eramon ,

it looks like your environment had trouble downloading the geoip database. Please run the following commands in Dev Tools to force download:

PUT _cluster/settings
{
  "transient": {
    "ingest.geoip.downloader.enabled": "false"
  }
}

PUT _cluster/settings
{
  "transient": {
    "ingest.geoip.downloader.enabled": "true"
  }
}

Best,
Andre

Thank you a lot Andre :slight_smile:

That worked indeed! Thanks again