Sandip Patel

Let's move from "Have to" to "Want to"

Menu
  • Home
  • TECH CORNER
    • AWS
    • Networking
  • Videos
  • Expert Talk Delivered
  • Projects
  • Publications
  • About Me
Menu

Author: Sandip Patel

Install terraform on ubuntu and Create EC2 instance on AWS using terraform script

Posted on March 25, 2020October 7, 2020 by Sandip Patel

Open terminal and download terraform using the following command: sudo apt-get update wget https://releases.hashicorp.com/terraform/0.11.13/terraform_0.11.13_linux_amd64.zip sudo unzip ./terraform_0.11.13_linux_amd64.zip -d /usr/local/bin/ terraform -v Now, create terraform script and run the following command to instance: nano terraform.tf provider “aws” { region = “rerion” access_key = “accesskey” secret_key = “secretkey” } resource “aws_instance” “example” { ami = “ami-8803e0f0” instance_type…

Install Cloudwatch agent on on-premises Linux server

Posted on March 23, 2020October 7, 2020 by Sandip Patel

Configure AWS CLI in your machine using the following command: sudo apt install awscli Create access key and secret key of any user in your AWS account and provide it in your machine using below command: aws configure Now download and install cloudwatch agent on linux host: wget https://s3.amazonaws.com/amazoncloudwatch-agent/ubuntu/amd64/latest/amazon-cloudwatch-agent.deb sudo dpkg -i -E ./amazon-cloudwatch-agent.deb Now,…

Deploy Flask website using AWS CLI with AWS Lambda, AWS API Gateway and Zappa

Posted on February 18, 2020October 7, 2020 by Sandip Patel

Prerequisites: Python pip virtualenv awscli To deploy a Flask website, first create a virtual environment using below commands in cmd terminal… >mkdir demo >cd demo demo> virtualenv <name_virtualenv> demo> %HOME_Path%\ <name_virtualenv> \Scripts\activate To check environment is now active like below: (<name_virtualenv>) C:\> Now, Install all necessary dependencies in a virtual environment (<name_virtualenv>) C:\> pip install flask (<name_virtualenv>) C:\> pip install…

Deploy Django website using AWS Elastic Beanstalk CLI in windows

Posted on January 30, 2020October 7, 2020 by Sandip Patel

Prerequisites: Python pip virtualenv awsebcli To deploy a Django website, first create a virtual environment using below commands in cmd terminal… >mkdir demo >cd demo demo> virtualenv <name_virtualenv> demo> %HOME_Path%\ <name_virtualenv> \Scripts\activate To check enviroment is now active like below: (<name_virtualenv>) C:\> Now, Install django in virtual environment (<name_virtualenv>) C:\> pip install django (<name_virtualenv>) C:\>…

Installing Jenkins on Ubuntu

Posted on March 11, 2019October 7, 2020 by Sandip Patel
First of all we need to install java jdk and jre 1.sudo apt update 2.sudo apt install openjdk-8-jdk 3.sudo apt install openjdk-8-jre Change our directory and install jenkins in that directory 4.cd /tmp && wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - 5.echo 'deb https://pkg.jenkins.io/debian-stable binary/' | sudo tee -a /etc/apt/sources.list.d/jenkins.list 6.sudo apt...

Follow Me

              

AWS Re: invent 2021 at Las Vegas

Achievements & Events

Faculty- Ambassador
Best Paper Presentation Award
AWS Academy Success Story on AWS official Blog
AWS Expert Talk 2020
USA-Conference
Paper Presentation
Conference-Team
AWS Expert Talk by IEEE 2020

RSS Recent Announcements

  • AWS Fargate for Amazon Elastic Kubernetes Service is now available in the Amazon Web Services China Beijing and Ningxia Regions June 24, 2022
  • Amazon EC2 Auto Scaling announces increased Auto Scaling group default limit per account June 24, 2022
  • Amazon EC2 G5 instances now available in additional regions June 23, 2022
  • Amazon EC2 C7g instances powered by AWS Graviton3 processors now available in US East (Ohio) and Europe (Ireland) June 23, 2022
  • Amazon Connect Wisdom now enables you to integrate agent assistance capabilities into custom agent applications June 23, 2022

Recent Posts

  • Deployment of Website Using AWS CICD pipeline & Fargate
  • Install terraform on ubuntu and Create EC2 instance on AWS using terraform script
  • Install Cloudwatch agent on on-premises Windows server
  • Install Cloudwatch agent on on-premises Linux server
  • Deploy Flask website using AWS CLI with AWS Lambda, AWS API Gateway and Zappa
June 2022
S M T W T F S
 1234
567891011
12131415161718
19202122232425
2627282930  
« Mar    
web counter
©2022 Sandip Patel | WordPress Theme by SuperbThemes