How do I set up dynamic port mapping for Amazon ECS?

0

Short description
The Classic Load Balancer doesn't allow you to run multiple copies of a task on the same instance. Instead, with the Classic Load Balancer, you must statically map port numbers on a container instance. However, an Application Load Balancer uses dynamic port mapping, so you can run multiple tasks from a single service on the same container instance.

Resolution
To set up dynamic port mapping, follow these steps:

Create an Application Load Balancer and a target group.
Important: To route health check traffic correctly when you create a target group, expand Advanced health check settings. For Port, select traffic port.
Open the Amazon ECS console, and then set the host port to 0 for the task definition that you're creating or updating. Be sure to set the container port mappings for your application.
Important: The host and awsvpc network modes do not support dynamic host port mapping.
Add a rule to allow inbound traffic from your load balancer to your container instances. The security group and network access control list (network ACL) must allow traffic from the load balancer to the instances over the ephemeral port range.
Note: For more information about ephemeral port ranges, see PortMapping.
Open the Amazon ECS console, and then configure your service to use the Application Load Balancer that you created.
Important: You can add a load balancer only during the creation of the service. After service creation, you can't change the target group's Amazon Resource Name (ARN), container name, or the container port specified in the service definition. You can't add, remove, or change the load balancer configuration of an existing service. If you update the service task definition, then the container name and container port specified at service creation must remain in the task definition. For more information, see Service load balancing.
Open the Amazon Elastic Compute Cloud (Amazon EC2) console, and then choose Target Groups from the navigation pane. Choose the hyperlinked name for your target group. From the Targets tab, you can see which port is used for the task in the service that you created.

profile picture
asked 3 years ago1334 views
3 Answers
0

Short description
The Classic Load Balancer doesn't allow you to run multiple copies of a task on the same instance. Instead, with the Classic Load Balancer, you must statically map port numbers on a container instance. However, an Application Load Balancer uses dynamic port mapping, so you can run multiple tasks from a single service on the same container instance.

Resolution
To set up dynamic port mapping, follow these steps:

Create an Application Load Balancer and a target group.
Important: To route health check traffic correctly when you create a target group, expand Advanced health check settings. For Port, select traffic port.
Open the Amazon ECS console, and then set the host port to 0 for the task definition that you're creating or updating. Be sure to set the container port mappings for your application.
Important: The host and awsvpc network modes do not support dynamic host port mapping.
Add a rule to allow inbound traffic from your load balancer to your container instances. The security group and network access control list (network ACL) must allow traffic from the load balancer to the instances over the ephemeral port range.
Note: For more information about ephemeral port ranges, see PortMapping.
Open the Amazon ECS console, and then configure your service to use the Application Load Balancer that you created.
Important: You can add a load balancer only during the creation of the service. After service creation, you can't change the target group's Amazon Resource Name (ARN), container name, or the container port specified in the service definition. You can't add, remove, or change the load balancer configuration of an existing service. If you update the service task definition, then the container name and container port specified at service creation must remain in the task definition. For more information, see Service load balancing.
Open the Amazon Elastic Compute Cloud (Amazon EC2) console, and then choose Target Groups from the navigation pane. Choose the hyperlinked name for your target group. From the Targets tab, you can see which port is used for the task in the service that you created.

profile picture
answered 3 years ago
0

reopen

profile picture
answered 3 years ago
0

"helpful"

profile picture
answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions