Blog

Latest Articles

Browse the latest tutorials, guides, and practical examples across Linux, DevOps, security, databases, and programming on GoLinuxCloud.

Explore the latest tutorials and guides across Linux, DevOps, programming, and more.

You can also browse content by category below:

  • Linux: Commands, administration, troubleshooting, and system operations
  • DevOps: CI/CD, Kubernetes, containers, and automation
  • Cloud: AWS, Azure, OpenStack, and hybrid cloud administration
  • Programming: Coding tutorials, scripting, and development concepts
  • Security: Ethical hacking, system security, and best practices
  • Databases: MySQL, MariaDB, PostgreSQL, and database management
  • Networking: Network setup, troubleshooting, and protocols
  • Storage: Disk management, file systems, and storage solutions
  • Tools: Useful tools and utilities for productivity

2329 articles

Blog illustration with latest articles, tutorials, guides, and how-to content across Linux and DevOps topics
linux

Get SFTP version of remote server in Linux

3 different methods to connect to remote server and get sftp version in Linux. The proper way to get sftp version in Linux with examples

Omer Cakmak3 min read
storage

DRBD Tutorial | Setup Linux Disk Replication | CentOS 8

Step-by-Step DRBD Tutorial to install and configure DRBD Storage device on CentOS 8. Perform Linux disk replication runtime. How to perform DRBD configuration

Deepak Prasad14 min read
system-administration

2 ways to boot with old kernel version in RHEL 8 using grubby

Steps to set default boot kernel in RHEL 8 using grubby and boot with old kernel version. Check the kernel version which will get activated after reboot

Deepak Prasad7 min read
system-administration

How to configure ssh host based authentication per user (CentOS/RHEL 7/8)

Configure SSH Host Based Authentication using sshd_config, shosts,equiv per user RHEL/CentOS 7/8. Compare Host based authentication vs public key authentication

Deepak Prasad8 min read
devops

#1-ELK Stack: Configure elasticsearch cluster setup CentOS/RHEL 7/8

Elasticsearch Tutorial on ELk Stack to configure elasticsearch cluster in RHEL/CentOS 7/8 Linux with examples. Get cluster helath status, node types, stats

Deepak Prasad20 min read
devops

Install & configure glusterfs distributed volume RHEL/CentOS 8

Steps to install and configure glusterfs distributed volume on two cluster nodes with RHEL/CentOS 8. GlusterFS Tutorial with shared storage Red Hat/CentOS 8

Deepak Prasad9 min read
storage

Configure glusterfs distributed replicated volume RHEL/CentOS 8

Steps to install and configure shared storage with glusterfs distributed replicated volume in RHEL/CentOS 8 Linux. Configure Red hat Storage in Red Hat 8

Deepak Prasad9 min read
storage

Install & configure glusterfs replicated volume RHEL/CentOS 8

GlusterFS Tutorial to install and configure glusterfs replicated volume shared storage with redundancy in RHEL/CentOS 8 Linux GlusterFS Replication Volume Type

Deepak Prasad9 min read
devops

Configure Pod storage with Kubernetes Persistent Volume (PV)

A Kubernetes Persistent Volume (PV) is a piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned using Storage Classes

Deepak Prasad16 min read
devops

Beginners guide on Kubernetes StatefulSets with examples

A Kubernetes StatefulSet makes sure pods are rescheduled in such a way that they retain their identity and state. It also allows you to easily scale the number of pods up and down.

Deepak Prasad10 min read
devops

Beginners guide on Kubernetes RBAC with examples

The Kubernetes API server can be configured to use Role Based Access Control (RBAC) to check whether an action is allowed to be performed by the user requesting the action

Deepak Prasad13 min read
devops

Steps to perform Kubernetes upgrade version (without downtime)

Steps to perform kubernetes upgrade version requires updating controller followed by worker node. Update kubeadm and drain the node.

Deepak Prasad12 min read
programming

HashSet Java Explained [Easy Examples]

HashSet Java class is used to create a collection that uses a hash table for storage. It inherits the AbstractSet class and implements the Set interface. HashSet stores the elements by using a mechanism called hashing

Bashir Alam11 min read
programming

Java Regular Expression (RegEx) Explained [Easy Examples]

A Java regular expression is a special sequence of characters that helps us to match or find other strings or sets of strings, using a specified syntax held in a pattern

Bashir Alam10 min read
programming

Java User Input - Multiple Ways [Easy Examples]

In java programming language, we have three different kinds of methods through which we can take java user input including Scanner class, Buffered class, and console class

Bashir Alam11 min read
programming

Java Boolean Operator Explained

There are multiple java boolean operators such as logical operators that include logical operators, like the logical AND and logical OR as discussed above, unary operators like NOT and bitwise operators

Azka Iftikhar8 min read
programming

Java DecimalFormat Explained

The java DecimalFormat class is used to apply decimal formats that are user- defined, to apply java DecimalFormat we use the class java.text.DecimalFormat.

Azka Iftikhar8 min read
programming

List vs LinkedList in Java Explained

In Java, List is an interface in java.util package whereas LinkedList is a class in the java.util package. Both of this data structure is used to store the ordered collection of an elements of same type. The advantage of …

Deepak Prasad6 min read
programming

LinkedList in Java Explained [Complete Tutorial]

In Java, the LinkedList class is a member of Java Collections Framework present in java.util package. This class implements List interface along with other interface like Serializable, Cloneable, Iterable, collection, …

Deepak Prasad12 min read
databases

SQL NOT IN Operator Explained [8 Practical Examples]

Examples of SQL NOT IN with Numeric list of values, String list of values, Date list of values, Subquery, columns, Update statement, Delete statement, HAVING CONDITION

Falguni Thakker7 min read
databases

SQL RIGHT OUTER JOIN Explained

SQL RIGHT OUTER JOIN is one type of SQL OUTER JOIN used to retrieve all records from the right table of the join and match records from the left table side of the join, the records for which there is no matching record …

Falguni Thakker7 min read
programming

ArrayList vs LinkedList in Java

The ArrayList class implements a List Interface. So, this acts as a list. While the LinkedList class implements both List and Deque Interface. So, this acts as a both list and deque.

Deepak Prasad6 min read
programming

HashMap vs Hashtable vs HashSet in Java

HashMap is hash table based implementation of Map interface, Hashtable class implements a hash table, which maps keys to values. HashSet is a hash table based implementation of Set interface.

Deepak Prasad6 min read
programming

CopyOnWriteArrayList Class in Java [Complete Tutorial]

In this tutorial, we covered constructors and methods of CopyOnWriteArrayList class along with the important operations that can be performed using the built- in methods

Deepak Prasad7 min read
devops

Deploy multi-node K8s cluster on Rocky Linux 8

Step by step instructions to setup and deploy multi-node kubernetes cluster on Rocky Linux 8 using containerd and calico CNI

Deepak Prasad10 min read
programming

8 different Escape Sequence in Java with Examples

An escape sequence in java refers to a character proceeded by a backslash(), the escape sequences have special meanings. In java, while declaring a string, a

Azka Iftikhar6 min read
programming

SOLVED: How to do Nodejs Base64 Encode & Decode

Failure to understand the Nodejs base64 encode process could hinder you from maximizing the runtime environment's potential in data transfer.

Steve Alila8 min read
programming

Create Map function for objects (instead of arrays) - Nodejs map

Object mapping enables you to handle data comfortably. However, the main challenge of implementing Nodejs map is that objects lack the native map method that

Steve Alila6 min read
linux

Install JasperReports Server on Linux

how to install jasper server on centos 7, install jasperreports server ubuntu, jasperreports server installation guide, jaspersoft studio download ubuntu, install jaspersoft studio, jasper installation linux

Omer Cakmak5 min read
linux

Cinder vs Swift storage in OpenStack - Basic Difference and Comparison

Understand what is the difference between cinder vs swift storage OpenStack. Compare cinder vs swift storage in OpenStack with logical architecture diagram.

Deepak Prasad4 min read