Restarting Tines on AWS Fargate

To restart the Tines services in your Fargate deployment using the CLI, first, connect to the AWS CLI and list the services:

aws ecs list-services --cluster <cluster_name>

Then restart the desired service as follows:

aws ecs update-service --cluster <cluster_name> --service <service_name> --force-new-deployment

To restart the Tines services using the ECS GUI, perform the following steps:

  1. Log into the AWS Management Console.

  2. Navigate to the Elastic Container Service.

  3. Navigate to Clusters.

  4. Click on the cluster that your Tines service is in.

  5. Click on the service you’d like to restart.

  6. Click Update.

  7. Check “Force new deployment”.

  8. Click Skip to review.

  9. Click Update service.

Was this helpful?