Category: AWS Tutorials

Start-Stop-Ec2 0

How to Stop and Start Amazon Ec2 Instances at Regular Interval of Time

Administration is all about deploying stable, scalable and secure environments. Cost optimization is the also plays a very important role into this. Administrator should be smart enough to manage all these things in cost-effective manner. In this tutorial we are trying to demonstarte a smart way of deploying amazon ec2 instances, in which we can Stop and Start Amazon Ec2 Instances at Regular Interval of Time and use them when they are...

EBS Backup 520x245 - Backup Amazon EBS Volume Snapshots from Amazon Ec2 0

Backup Amazon EBS Volume Snapshots from Amazon Ec2

Data is the most important factor in any business and taking its backup on a regular interval of time is a handsome practice. We have come up the technique to auto backup Amazon EBS volume snapshots from running Amazon Ec2 instance using AWS CLI. Prerequisite Amazon AWS account for creating Access key ID and Secret access key. Running Amazon Ec2 Instance. AWS Command Line Interface. Create Access key ID and Secret access key Log...

s3bucket 520x245 - Make Amazon S3 Bucket Public Readable and Accessible 1

Make Amazon S3 Bucket Public Readable and Accessible

Amazon S3 is a web service offered by Amazon Web Services. Amazon S3 (Simple Storage Service) is object storage built to store and retrieve any amount of data, at any time, from anywhere on the web. We can use S3 to store and serve files, images, documents, and even we can use S3 buckets for hosting a web application. It allows users to store an infinite amount of data. By default, the files uploaded to  S3...

phpMyAdmin RDS 520x245 - Integrating phpMyAdmin with Amazon RDS Service - MySQL Instance | AWS Tutorials 1

Integrating phpMyAdmin with Amazon RDS Service – MySQL Instance | AWS Tutorials

In this tutorial, we will demonstrate the integration of phpmyadmin with running Amazon RDS MySQL instance. Kindly follow the instructions listed below. Default Document Root folder: /var/www/html cd /var/www/html Download phpMyAdmin from the authorized website or use the wget command below. wget https://files.phpmyadmin.net/phpMyAdmin/4.7.3/phpMyAdmin-4.7.3-all-languages.zip Unzip the phpMyAdmin. unzip phpMyAdmin-4.7.3-all-languages.zip mv phpMyAdmin-4.7.1-all-languages phpmyadmin && cd phpmyadmin Edit the configuration file for phpMyAdmin. mv config.sample.inc.php config.inc.php Default File vim config.inc.php /* Server parameters */ $cfg[‘Servers’][$i][‘host’] = ‘localhost’; $cfg[‘Servers’][$i][‘compress’] =...

Amazon s3 Backup 520x245 - Shell Script for backing up data to Amazon s3 1

Shell Script for backing up data to Amazon s3

s3cmd is a command line tool for saving, retrieving, uploading and managing data from Amazon s3. Its capacity to store huge amount of data on nominal charges, Amazon s3 is becoming one of the most suitable choices for storing data remotely. Pre-Requests Install amazon s3 cli on ec2. Create IAM role with s3 Access Configure s3cmd on ec2. Create Amazon s3 bucket for the backup process. Basic Bash Script, can be modified...