Deploying Web Servers In Ubuntu/AWS Linux. (Nginx,Apache/httpd)What is Server? Server is a system which provides data,service, programs or resources to another system. There are different types of servers like web server,mail server,proxy server,database server and so on.. Here we will discuss about web serve...Jan 31, 2025·2 min read
Advance Git & GitHub for DevOps EngineersCreate a new branch and make some changes to it To create a new branch and switch to new branch, sudo git branch Dev sudo git checkout Dev Use git stash to save the changes without committing them git command helps to save our latest changes in ...Aug 18, 2023·3 min read
Advance Git & GitHub for DevOps EngineersAdd a text file called version01.txt inside the Devops/Git/ with “This is the first feature of our application” written inside. This should be in a branch coming from master, [hint try git checkout -b dev], switch to dev branch ( Make sure your commi...Aug 18, 2023·3 min read
Deep Dive in Git & GitHub for DevOps EngineersSet your user name and email address, which will be associated with your commits. To set a username, sudo git config --global user.name "Neha" To set a user email, sudo git config --global user.email "bisen.neha21@gmail.com" Create a repository na...Aug 18, 2023·1 min read
Basic Git & GitHub for DevOps Engineers.How to Install Git on your computer (if it is not already installed) Git is a version control system that is used to track the changes of a file among multiple people. This is commonly used in software development. Firstly, update your machine, sudo ...Jul 27, 2023·2 min read
Easiest way to install docker and jenkins on ubuntu and centos for DevOpsHow to install docker on Ubuntu To, install docker on Ubuntu, just run the following commands, Update your system, sudo apt-get update -y Install docker, sudo apt-get install docker.io -y Start docker, sudo systemctl start docker Now, you ...Jul 26, 2023·3 min read
File Permissions and Access Control ListsCreate a simple file and do ls -ltr to see the details of the files ls -lrt Here, ls, --lists all files and directories present in the present working directory. -l, --long listing. -r, --reverse order, which is used to reverse the order of listing....Jul 25, 2023·2 min read