Tag AWS
AWS Console – View all resources across the region together
One of the common problems many DevOps admins faced is a consolidated view of resources across all-region in the AWS console. Now Amazon EC2 offers Global View on the console to view resources across regions together, the resources such as…
Restore MySQL dump in the background
Remote SSH to the Linux servers will get disconnected for multiple reasons, if you have a huge dump of MySQL database and want to restore the database using the MySQL command in the background and should not affect if your…
S3 Bucket Protection for Disaster Recovery
Multiple storage architectures exists, one of them is Object storage., Object Storage aka Object-based storage that manages the data as objects, unlikely to the other architectures like File ( which manages as file hierarchy ) and Block ( which manages…
What ZAPPA does when you call deploy
Zappa makes it super easy to build and deploy server-less, event-driven Python applications (including, but not limited to, WSGI web apps) on AWS Lambda + API Gateway. Think of it as “serverless” web hosting for your Python apps. That means…
My First Serverless App – ZAPPA + Flask + Lambda + Python
Introduction to Server-Less Serverless computing is a method of providing backend services on an as-used basis. A serverless provider allows users to write and deploy code without the hassle of worrying about the underlying infrastructure. A company that gets backend…
Install MariaDB on Ubuntu 16.04 on Amazon Web Services
First Launch the EC2 Instance from the AMI Ubuntu Server 16.04 LTS (HVM), SSD Volume Type After Launching the EC2 instance, connect to the instance using the key pair, to know the default username for each operating system in the…
Enable Root access for the Linux EC2 Instances
By default Amazon doesn’t enable root access to the users, This is a very important security best practise, admins, are supposed to connect using a secure key pair to log in as ec2-user ( Read more here about the default…
EBS Snapshots with Volume-ID vol-ffffffff
A snapshot is a copy of an Amazon EBS volume at a point in time. EBS snapshots include a Volume ID Property which is from which the snapshot was created. However, the volume ID of some volume will be set…