Category / Section
Resolving ETL Connection Issues in Docker Deployment for Bold BI
Published:
When encountering access problems with an ETL application while using a localhost URL in a Docker deployment, it is essential to adjust the access URL to utilize the private IP address of the machine. Follow the steps below to resolve the issue:
Steps to Resolve ETL Connection Issues
-
Find Your Private IP Address:
- To locate the private IP address of your machine, refer to the following articles:
-
Update the Application URL:
- Access the UMS administration page by navigating to
http://localhost:8085/ums/administration
. Make sure to replace the port number with the appropriate port number for your setup. - Change the application URL to use your private IP address instead of localhost and save it.
- Access the UMS administration page by navigating to
-
Restart the Docker Container:
- After updating the URL, restart the Docker container to apply the changes.
docker-compose down
docker-compose up
-
Access the ETL Application:
- You should now be able to access the ETL application without any issues.
By following these steps, you can effectively resolve connection problems related to the ETL application in a local Docker environment.