
Vagrant-Aws EC2 Instances
Using Vagrant to deploy AWS EC2 Instances Vagrant machines are provisioned on the top of VirtualBox, VMware, AWS, or any ...
Read More
Read More

DevOps on AWS – AWS Interview Questions
AWS Interview Questions: What is the end point which is used in the cloud front? Why the IP Address will ...
Read More
Read More

DevOps on AWS – DevOps Interview Questions
The following DevOps Interview Questions which are asked in different Companies… DevOps: 1.What are your daily activities? 2.Tell me one ...
Read More
Read More

DevOps on AWS – Shell Script to verify the System Status
#!/bin/bash if [ $# -ne 1] then echo “Please provide the Parameters: Machine IP” exit 2 fi SERVERIP=$1 NOTIFYEMAIL=test@example.com ping ...
Read More
Read More

DevOps on AWS – Python script to monitor Stopped Instances
#!/bin/python import boto.ec2 # production instances production = [ ‘srv1’, ] # currently using this mandrill smtp def send_alert_mail(message): import ...
Read More
Read More

DevOps on AWS – Python Script to Start / Stop the EC2 Instances
Start / Stop the Instances: # instance.py #!/bin/python import argparse import sys import boto.ec2 def check_arg(args=None): parser = argparse.ArgumentParser(description=’args : ...
Read More
Read More