neha99.hashnode.devDeploying 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
neha99.hashnode.devIntroduction to Terraform and Terraform BasicsWhat is Terraform and how can it help you manage infrastructure as code? Terraform is an IAAC ( Infrastructure As A Code ). Terraform is a tool for provisioning, managing, and deploying infrastructure resources. It is an open-source tool written in G...Sep 9, 2023·2 min read
neha99.hashnode.devPython Data Types and Data Structures for DevOpsList: A list is an ordered collection of items. Elements in a list are enclosed in square brackets [ ]. Lists are mutable, meaning you can add, remove, or modify elements after creation. Lists can contain duplicate elements. Hands-on Example fo...Aug 22, 2023·4 min read
neha99.hashnode.devHow to install Python in Linux (Ubuntu)Install Python in your respective OS, and check the version In DevOps python is used to automate manual things just like shell scripting. To install Python in Ubuntu, sudo apt-get install python3.6 Because we have installed python3.6, therefore we ...Aug 19, 2023·1 min read
neha99.hashnode.devLinux CheatsheetNavigation: ls: List files and directories in a directory cd: Change the current working directory pwd: Display the current working directory File Management: cp: Copy files and directories mv: Move or rename files and directories rm: Delete ...Aug 18, 2023·2 min read