- Newest
- Most votes
- Most comments
The error you're encountering during the "Start application" phase of the AWS BluAge L3 workshop's Go-Live process suggests there are issues with the application's dependency injection and bean creation, particularly related to the Redis cache and database configuration.
Here are some steps you can take to troubleshoot and potentially resolve the issue:
-
Check your Redis configuration: Ensure that the Redis server is running and accessible. Verify that the connection details (host, port, password if applicable) are correctly set in your application's configuration files.
-
Verify database configuration: The error mentions a problem with creating a metadata table. Double-check your database connection settings, including the URL, username, and password. Make sure the database server is running and accessible.
-
Review application properties: Examine your application.properties or application.yml file to ensure all necessary configurations for Redis, database, and other components are correctly set.
-
Check dependencies: Ensure that all required dependencies are present in your project's build file (pom.xml for Maven or build.gradle for Gradle) and that there are no version conflicts.
-
Examine logs: Look for more detailed error messages in the application logs. They might provide additional information about the specific cause of the failure.
-
Validate data sources: Ensure that all required data sources (jics, bluesam, bac, primary) are correctly configured and accessible.
If you've checked all these areas and the issue persists, you may need to reach out to the AWS BluAge L3 workshop support team for further assistance. They can provide more specific guidance based on the workshop's setup and requirements.
Remember that the workshop environment is designed to simulate real-world scenarios, so troubleshooting these issues is part of the learning process for achieving L3 certification.
Sources
AWS Blu Age L3 workshop - Automation step error | AWS re:Post
BluAge L3 Workshop (Go Live --> Testing --> Test Online) | AWS re:Post
The issue was with the naming with one of the resource (database). it was not matching (it was created with capital letters but inside the application it was all small letters) hence it was not reachable by the application, once renamed it worked. Thanks.
Relevant content
- AWS OFFICIALUpdated 4 years ago
