Search posts, tags and authors

kiril-urbonas Kiril Urbonas

Kiril, creator of devopsness.com, an IT professional, DevOps cloud and tech enthusiast.

27 posts by kiril-urbonas Author since 2024
How to Launch Amazon EC2 Linux Instance Step By Step
July 31, 2024 by kiril-urbonas in AWS

How to Launch Amazon EC2 Linux Instance Step By Step

What is Amazon EC2 instance? Amazon Elastic Compute Cloud (Amazon EC2) is a web service provided by Amazon Web Services (AWS) that offers scalable virtual servers, known as instances, in the cloud. It allows users to run applications on a virtual machine with varying configurations of CPU, memory, storage, and...

Understanding HTTP/1, HTTP/2, and gRPC: A Comparative Guide
July 22, 2024 by kiril-urbonas in IT

Understanding HTTP/1, HTTP/2, and gRPC: A Comparative Guide

In the realm of web development and API design, choosing the right communication protocol is crucial for performance, efficiency, and scalability. HTTP/1, HTTP/2, and gRPC are three prominent protocols, each with its unique characteristics and use cases. This blog post will explore the differences between these protocols and...

How to install Docker on Ubuntu
July 21, 2024 by kiril-urbonas in Docker

How to install Docker on Ubuntu

Docker is an open-source platform that enables developers to automate the deployment, scaling, and management of applications within lightweight, portable containers. To install docker on ubuntu: 1. Set up Docker's apt repository. # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo...

Crowdstrike global outage
July 19, 2024 by kiril-urbonas in News

Crowdstrike global outage

What Happened? On July 19, 2024 at 04:09 UTC, as part of ongoing operations, CrowdStrike released a sensor configuration update to Windows systems. Sensor configuration updates are an ongoing part of the protection mechanisms of the Falcon platform. This configuration update triggered a logic error resulting in a system...

Top Docker Commands and Their Usage
July 16, 2024 by kiril-urbonas in Docker

Top Docker Commands and Their Usage

Docker has revolutionized how we build, ship, and run applications. Mastering Docker commands is essential for developers and DevOps professionals. Here’s a rundown of the most important Docker commands and how to use them effectively. 1. docker run The docker run command creates and starts a container from a...