Setting Up AWS CodeDeploy Agent on Ubuntu EC2

access_time 1676026740000 face Shubham Londhe
Setting Up AWS CodeDeploy Agent on Ubuntu EC2 Setup an AWS CodeDeploy Agent in simple steps Its easy :) In order to deploy your app to EC2, CodeDeploy needs an agent which actually deploys the code on your EC2. So let's set it up. Create a shell script with the below contents and run it #!/bin/bash...

Fresher Resume For DevOps

access_time 1669985700000 face Shubham Londhe
Fresher Resume For DevOps This is a Resume By Faizan Sheikh which he used to switch from Mechanical to DevOps Tips and Tricks to Build a Resume Watch this video Learn DevOps in Hindi...

Ansible Playbooks

access_time 1663313700000 face Shubham Londhe
Ansible Playbooks These simple playbooks can get you started with Ansible. Ansible Playbooks By #TrainWithShubham Update all the Servers ansible all -m apt -a "upgrade=yes update_cache=yes cache_valid_time=86400" --become Creating a File ubuntu@ip-172-31-91-124:~/ansible/playbooks$ cat create_file....

Ansible Notes By TrainWithShubham

access_time 1662132540000 face Shubham Londhe
Ansible Notes By TrainWithShubham More notes are coming:) Notes https://drive.google.com/file/d/1RZJZFdpDTIEj5X17lFXv4Kdx7qhaRhv2/view?usp=sharing Checkout the videos...

Install Jenkins on AWS

access_time 1658944680000 face Shubham Londhe
Install Jenkins on AWS How can you easily setup Jenkins on AWS EC2 instance (Ubuntu) Easy Installation - My style :) Update your system sudo apt update Install java sudo apt install openjdk-11-jre Validate Installation java -version It should look something like this openjdk version "11.0.12" 2021-...