
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
If you are hosting your Rails app on ECS Fargate and want to connect to the Rails console or launch a bash session, you need to use AWS cli like so :
aws ecs execute-command --region eu-west-3 --cluster CLUSTER_ARN --task TASK_ARN --container CONTAINER_NAME --command 'bundle exec rails console' --interactive
This gem helps to get the correct cluster arn and task id so that you don't have to get them yourself.
ecs console
ecs bash
ecs logs
ecs scale
Install AWS cli
Install AWS Session Manager plugin
Install gem
gem install 'ecs-rails'
Via environment variables:
export ENV['AWS_REGION'] = 'us-east-1'
export ENV['AWS_ACCESS_KEY_ID'] = 'your-access-key-id'
export ENV['AWS_SECRET_ACCESS_KEY'] = 'your-secret-access-key'
export ENV['CONTAINER_NAME'] = 'your-container-name'
aws sso login
Connect to Rails console on a running Task.
ecs console
Select a cluster:
1) cluster-prod
2) cluster-staging
Choose 1-2 [1]:
Select a service:
1) app
2) worker
Choose 1-2 [1]:
irb(main)>
You can specify cluster name via -c option by giving a string included in cluster arn. You can specify service name via -s option by giving a string included in service arn.
# with cluster name: webapp-cluster-prod-e950a13
# with service name: webapp-app-prod-7c7cad7
ecs console -c prod -s app
irb(main)>
Connect to bash session on a running Task.
ecs bash -c prod -s app
bash-4.2#
Tail CloudWatch logs for a service.
ecs logs -c prod -s app
Fetching log group from task definition...
Log group: webapp-app-log-group-prod-827a419
Executing command: aws logs tail webapp-app-log-group-prod-827a419 --region us-east-1 --follow --format short
The logs command will:
--follow flagView the current scaling status of a service (refreshes every 5 seconds):
ecs scale -c prod -s app
Press Ctrl-C to exit
Fetching service status... (refreshes every 5 seconds)
Service: webapp-app-prod-7c7cad7
Cluster: webapp-cluster-prod
Status: ACTIVE
Task counts:
Desired: 2
Running: 2
Pending: 0
Scale a service up or down by changing the desired task count:
ecs scale -c prod -s app --count 5
Fetching service status...
Current desired count: 2
Scaling service 'webapp-app-prod-7c7cad7' to 5 tasks...
âś“ Service scaled successfully!
New desired count: 5
The scale command will:
--count: Show the current status including desired, running, and pending task counts, refreshing every 5 seconds. Press Ctrl-C to exit.--count: Update the service's desired count to the specified number and confirm the operationFAQs
Unknown package
We found that ecs-rails demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.