Code Junkie
Code Junkie

Reputation: 7788

AWS dedicated tomcat server

I'm wondering if aws offers a simple solution like beanstalk which consist of tomcat but does not scale. I need to deploy a war that runs scheduled task and beanstalk kills my instances and scales thus messing up my scheduled jobs.

edit I'm aware of creating a custom ec2 instance, I'm looking for something a little bit simpler like beanstalk, I'm not highly skilled in linux.

Upvotes: 0

Views: 58

Answers (3)

Mark B
Mark B

Reputation: 201058

Elastic Beanstalk supports Single Instance Environments. These environments won't scale.

Upvotes: 1

Cagatay Gurturk
Cagatay Gurturk

Reputation: 7246

You can create Docker image using one of base images (For example: https://hub.docker.com/_/tomcat/), push it to ECR then deploy to ECS.

https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_GetStarted.html

Upvotes: 2

mcd
mcd

Reputation: 1432

create worker environment create yaml file with schedule information. for more information please read aws guide. this might solve your problem.

Upvotes: 1

Related Questions