getting 502 bad gateway errors every time I turn on ec2 instance

0

I am currently building a web application on an ec2 instance. All of the code is stored within the server. When I type in the ec2 instance's ip address (35.167.110.26), I get a 502 bad gateway error. Although the server itself may have turned on, I still get a 502 bad gateway error because the code relies on a python import called flask. To enable flask, I have to manually type in "sudo service nginx restart" and "sudo service gunicorn3" restart within the /etc/nginx/sites-available directory. Once I type in those commands, the website works. Is there a way that I can enable these commands to run automatically every time I turn on the ec2 instance?

feita há 2 anos1356 visualizações
2 Respostas
2

Use User-data to introduce the interested commands at launch. The following link should help: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html

profile pictureAWS
Sudhi_B
respondido há 2 anos
1

Hello,

You can use the following commands to add nginx and gunicorn3 to start up:

sudo systemctl enable nginx
sudo systemctl enable gunicorn3
profile pictureAWS
ESPECIALISTA
Chris_G
respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas