You can copy the files from your EC2 server to an S3 bucket via AWS CLI in following way: SSH into your EC2 instanceConfigure AWS CLI on your EC2 instance $ aws configure Make sure the EC2 instance has a role assigned which has permissions to read and write to S3 bucketTry running below command … Continue reading Copying files from EC2 server to an S3 bucket
Tag: ec2
Automating Infrastructure with CloudFormation: Creating a Basic Template for S3 bucket and EC2
AWS CloudFormation takes care of provisioning and configuring those AWS resources for you. It automates the Infrastructure setup on AWS for you. You just need to create a CloudFormation template elisting the resources and their configuration. The template can be written in JSON or YAML Cloud Formation Templates are reusable which a big advantage. Cloud Formation … Continue reading Automating Infrastructure with CloudFormation: Creating a Basic Template for S3 bucket and EC2
How to deploy your node.js web application with AWS Beanstalk?
This post will show you how we can quickly create a node.js web aplication based on express framework and how to deploy that application on AWS using AWS BeanStalk service. Now first you need to know what is AWS BeanStalk? Some information about AWS BeanStalk: AWS BeanStalk is the fastest and simplest way to deploy … Continue reading How to deploy your node.js web application with AWS Beanstalk?
Creating an EC2 Instance in AWS
Amazon Elastic Compute Cloud (Amazon EC2) is a web service that provides secure, re-sizable compute capacity in the cloud. To know more about EC2 go to our previous post here. In this post I will show how to create your own EC2 Instance using AWS Management console. Pre-requisites: AWS Free tier Account Basic knowledge of … Continue reading Creating an EC2 Instance in AWS
AWS: Elastic Cloud Compute – EC2
Elastic Cloud Compute known as the EC2 in short is one of the core service form AWS operating from multiple data centers around the world. What does EC2 do? EC2 is can be used to run applications, create virtual desktops, use 3rd party software with it and most importantly computing. What does "Elastic" mean basically? … Continue reading AWS: Elastic Cloud Compute – EC2