- Newest
- Most votes
- Most comments
The "Connection refused" errors you're seeing are expected behavior in this part of the AWS Blu Age L3 Workshop. These messages are appearing because the automation script is intentionally stopping the Tomcat server after successfully executing the batch jobs.
Looking at your log, I can see:
- The CREASTMT job executed successfully with exit code 0
- The JaCoCo test case execution trace was dumped
- The script then proceeded to stop Tomcat (as indicated by the "Stop Tomcat" message)
- After stopping Tomcat, the script is checking for the availability of the server at http://localhost:8080
- Since Tomcat has been stopped, these connection attempts are failing with "Connection refused" errors
This is normal behavior as part of the workshop's automation process. The script first runs the batch jobs, collects code coverage data, and then shuts down the server. The connection refused messages are simply confirming that the server has been successfully stopped.
If you need to continue with other parts of the workshop, you'll need to restart the Tomcat server. The workshop may have specific instructions for this in the next sections.
Sources
AWS Blu Age L3 Workshop - Error on Automation - Execute | AWS re:Post
AWS Blu Age L3 Certification - Test - Batch Execution Fails at step 5. Execute COMBTRAN job | AWS re:Post
