use django developing web site in aws ec2

0

When I try to start the Django web server using the command "uvicorn DLAEv1.asgi: application --host 52.4.xxx.52 --port 8004", I always get error "error while attempting to bind on address ('52.4.xxx.52', 8004)": cannot assign requested address

已提問 2 年前檢視次數 319 次
1 個回答
0

Hi,

I understand that you're trying to bind django on the Elastic IP addr 52.4.xxx.52 on an EC2 instance.

Elastic IP addr are not directly binded on an EC2 instance, they are associated with an ENI of your EC2 instance which usually has a private IP from the VPC. That's why Django is unable to find this IP addr to bind on.

If you have only one interface mounted on your EC2 instance you can find out with this command on linux " ip addr " and "ipconfig" on windows.

finally, replacing your --host 52.4.xxx.52 with the local IP will fix the issue. ( ie : --host 172.31.xxx.xxx )

For ref : https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html

AWS
Julien
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南