1 Answer
- Newest
- Most votes
- Most comments
0
Without knowing more, I would recommend verifying that the security group allows your IP to access the server.
answered 2 years ago
Carlos thanks for your time! thought about the SG deleted and recreated thru steps got the same thing
Relevant content
- asked 2 years ago
- asked 2 years ago
- asked a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 7 months ago
Thanks for updating with the resolution. I've also encountered the same problem in the Coursera course. Just reported it as an issue, hope they fix it soon.
I also encountered this problem in the Coursera course, AWS Cloud Technical Essentials (Week 2). By following your solution, I managed to make it work by using Amazon Linux 2 AMI (Don't use the default). Thank you.
for the Amazon Linux 2023 AMI you should use this code: #!/bin/bash -ex wget https://aws-tc-largeobjects.s3-us-west-2.amazonaws.com/DEV-AWS-MO-GCNv2/FlaskApp.zip unzip FlaskApp.zip cd FlaskApp/ yum -y install python3-pip pip install -r requirements.txt yum -y install stress export PHOTOS_BUCKET=${SUB_PHOTOS_BUCKET} export AWS_DEFAULT_REGION=<INSERT REGION HERE> export DYNAMO_MODE=on FLASK_APP=application.py /usr/local/bin/flask run --host=0.0.0.0 --port=80
be aware that you have to insert your region after copying.