Stuck on loop where 'Retrying in 10 seconds' after running into errors and omitting frames #304
-
|
I've ensured that I have the latest release of OSMT cloned, valid Okta credentials, the most up-to-date version of Docker, and a clean Docker container every time I run the ./osmt_cli.sh -q command, after having run the initialization command and changing the file. However, the terminal script gets stuck running loops where it retries in 10 seconds after running into a loop and omitting frames. The log is attached. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
|
Looking at your log output for the Spring application, it is looking for an ElasticSearch host named Net result is that your local Docker service is using a hyphen instead of an underscore when naming your services. You should modify your osmt-quickstart.env file, and ensure that those host names match the output of a Please reply back if you need additional clarification? |
Beta Was this translation helpful? Give feedback.
-
|
@jengalbert2022 I'm just checking in... it looks like you've tried using the OSMT quickstart at different times over the last year. How is it going? What are you / your organization trying to accomplish by this? Was your issue above resolved by updating service names in the docker-compose file? |
Beta Was this translation helpful? Give feedback.
Looking at your log output for the Spring application, it is looking for an ElasticSearch host named
osmt_quickstart_elasticsearch_1(with an underscore) on the Docker network. If you look at your docker-compose up output, it's providing a host namedosmt_quickstart-elasticsearch-1(with a hyphen).Net result is that your local Docker service is using a hyphen instead of an underscore when naming your services. You should modify your osmt-quickstart.env file, and ensure that those host names match the output of a
docker pscommand.Please reply back if you need additional clarification?