Azure offers different on-demand scalable computing resources and linux virtual machines are one of them. An Azure VM gives you the flexibility of virtualization without having to buy and maintain the physical hardware that runs it. Though we still to perform certain task like configuring, patching, and installing the software that runs on it. Before … Continue reading Azure Series Part 4: Provisioning and accessing the Linux Virtual Machines
Azure Series Part 2: Provisioning the Log Analytics Workspace
Log Analytics is a tool in Azure to edit and run log queries from data collected by Azure Monitor Logs and interactively analyze their results. We can use Log Analytics queries (like KQL) to retrieve records matching particular criteria, identify trends, analyze patterns, and provide a variety of insights into your data. We attach a … Continue reading Azure Series Part 2: Provisioning the Log Analytics Workspace
Azure Series Part 1: Creating resource groups in Microsoft Azure
A resource group is a container that contains different resources in your in your Azure account. You can add any kind of resources you want to manage under one resource group. You can create a resource group based of your orgs preferences. It would be meaningful to create a resource group based on region as … Continue reading Azure Series Part 1: Creating resource groups in Microsoft Azure
Creating an Amazon CloudFront distribution with S3 on AWS: Tutorial
Amazon CloudFront is a content delivery web service. It integrates with other Amazon Web Services products to give developers and businesses an easy way to distribute content to end users with low latency, high data transfer speeds, and no minimum usage commitments.
Azure Series Part 3 – One liner introduction to primary Microsoft Azure Services
I accumulated this information from above link while preparing for AZ-900 exam so sharing here.
Configuring maven in Jenkins for your java project
Now let us see how we can setup and configure maven in Jenkins
Git and GitHub setup in Jenkins
To do the GitHub setup, make sure that Jenkins is installed, if not check my previous post. Git already comes installed if you select "Install suggested plugins" while setting up Jenkins Step 1: Go to Manage jenkins Step 2: Click on Manage Plugin Step 3: Go to available tab and search for Git if git … Continue reading Git and GitHub setup in Jenkins
Setting up Jenkins on Windows 10
Setting up Jenkins on Windows 10
Handling Multi-Region fail-over with Amazon Route 53 : Tutorial
Amazon Route53 ensures that your applications are available with minimal amount of downtime. Let us see how we configure disaster recovery scenario using Route53.
Spring Boot-Series Part 3: Deep Dive into Application Class
Application class in Spring boot is used to bootstrap and launch the Spring application from a Java main method. This class automatically creates the ApplicationContext from the classpath, it scans the configuration classes and launches the application.
Spring Boot-Series Part 2: What is pom.xml in a maven based Spring Project?
The full form of POM is Project Object Model. It is a fundamental unit of work in Maven. pom is a XML file that contains information about the project and configuration details used by Maven to build the project.