Innovate anywhere, anytime withruncode.io Your cloud-based dev studio.

MicroPyramidBlog

Explore a blog dedicated to a wide spectrum of topics including Django, Python, Machine Learning, Salesforce, Angular, React, Flutter, Svelte, LINUX, and Amazon Web Services.

How to Access EC2 Instance even if PEM File is Lost

Amazon Web Service is the market leader for cloud systems, giving an option to select specific AWS professional services with in their budget. EC2 instance can help in data recovery and many such features, makes AWS best in this trending cloud environment.

Accessing the EC2 instance even if you loose the pem file is rather easy.

  1. First, create a new instance by creating new access file, call it 'helper' instance with same region and VPC as of the lost pem file instance.
  2. Now stop the lost pem file instance. Remember not to terminate instance but to stop it.
  3. Goto EBS volumes, select the root volume of the lost pem file instance and detach.
  4. Now again select the detached volume and this time you have to attach this volume to helper instance which we created before. Since helper instance already has a root volume by default as /dev/sda1, the newly attached volume will be secondary(eg: /dev/sdf).
  5. Login to your helper instance with its pem file.
  6. Execute below commands:
Amazon Web Services Read Full Post

AWS Lambda - Best Practices

After Years of Developing Lambda Scripts from creating Serverless Applications to Pipelining your Tasks, Here are the Best Practices that we follow.

Amazon Web Services Read Full Post

Autoscaling Application with AutoScaling Groups and AWS LoadBalancer

Autoscaling Application with AutoScaling Groups and AWS LoadBalancer

Amazon Web Services Read Full Post

Deploying Django project on Elastic Beanstalk

This section focuses on how to setup and deploy a Django application to Amazon Web Services(AWS).

Amazon Web Services Read Full Post

How to Mount S3 Bucket on Local Disk

It all starts with FUSE, FUSE is File System User Space. Operating Systems have Kernel Space and User Space. Kernel Space is where low-level interaction with hardware occurs, this space has all privileges, User space is restricted, it has to communicate with kernel space to have access to resources.

Amazon Web Services Read Full Post

Using AWS Lambda with S3 and DynamoDB

Any application, storage is the major concern and you can perfectly manage your storage by choosing an outstanding AWS consultant. With AWS we can create any application where user can operate it globally by using any device.

Amazon Web Services Read Full Post

Configuring and Testing Load Balancer in AWS EC2

When You have an application that is serving Huge Customer Base, so will be your Traffic. Sometimes The Application stops responding. We can use load Balancer in cases like this which distribute the Traffic it receives between the multiple VPS running the same application. AWS Professional Services helps to scale your application as your business grows.

Amazon Web Services Read Full Post

Amazon SES - Handling Bounces and Complaints

Why do we go for Bounce and Complaint Handling while sending emails?

In general while sending emails, we will prepare some recipient addresses as our mailing list, which is valid and our recipients want and expect our mail. But sometimes, some emails which are invalid will bounce, and if valid recipients do not want your mail, they may mark your email as spam in their email client. High bounce and complaint rates put your account at risk of being shut down. So in order to avoid such problem, we'll handle the bounces and complaints and will remove those emails for not sending any emails further.

Amazon Web Services Read Full Post

Amazon AWS IAM Roles and Policies

When You want to Provide access to Amazon Web Services Console or if you're planning to provide REST API Keys to your Developers of a Third Party Person, Using Providing access to Root Account Console or API Keys is not advisable since they basically will have full level access. Instead, we can rely on IAM(Identity and Access Management). Require any support regarding AWS IAM Roles and Policies then contact development services to know more

Amazon Web Services Read Full Post

CORS with Amazon S3 and CloudFront

We struggle to load fonts from CloudFront because of CORS.

CORS - Cross Origin Resource Sharing is a security measure to block macious scripts or resources loading from foreign domain origins. This security will become hurdle when want to load resources from Amazon CloudFront this is often encountered when we want to load fonts from CloudFront. Here are simple yet detailed steps to enable CORS on CloudFront.

Amazon Web Services Read Full Post