Difference between Amazon ec2 and AWS Elastic Beanstalk -


can please explain difference between ec2 , beanstalk. want know regarding saas, paas , iaas.

to deploy web application in wordpress need scalable hosting service. if there better purpose, please let me know well.

just inform, want host&deploy multiple wordpress , drupal sites.

i not want give more time server , focus on development. cloud hosting needs auto scalable.

first off, ec2 , elastic compute cloud same thing.

next, aws encompasses range of web services includes ec2 , elastic beanstalk. includes many others such s3, rds, dynamodb, , the others.

ec2

ec2 amazon's service allows create server (aws calls these instances) in aws cloud. pay hour , use. can whatever want instance launch n number of instances.

elastic beanstalk

elastic beanstalk 1 layer of abstraction away ec2 layer. elastic beanstalk setup "environment" can contain number of ec2 instances, optional database, few other aws components such elastic load balancer, auto-scaling group, security group. elastic beanstalk manage these items whenever want update software running in aws. elastic beanstalk doesn't add cost on top of these resources creates you. if have 10 hours of ec2 usage, pay 10 compute hours.

running wordpress

for running wordpress, whatever comfortable with. run straight on single ec2 instance, use solution aws marketplace, or use elastic beanstalk.

what pick?

in case want reduce system operations , focus on website, elastic beanstalk best choice that. elastic beanstalk supports php stack (as others). can keep site in version control , deploy environment whenever make changes. setup autoscaling group can spawn more ec2 instances if traffic growing.

here's first result off of google when searching "elastic beanstalk wordpress": https://www.otreva.com/blog/deploying-wordpress-amazon-web-services-aws-ec2-rds-via-elasticbeanstalk/


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -