Disabling and Managing Graphical Interfaces on CentOS Systems

Managing Graphical Interfaces in CentOS 6.x In older distributions like CentOS 6, system states are managed via runlevels. Runlevel 3 represents a multi-user command-line environment with networking, while runlevel 5 includes the X Window System for graphical output. Temporary Runlevel Switching To drop from a graphical session to a terminal-on ...

Posted on Sat, 08 Aug 2026 16:25:35 +0000 by drewbee

A Systematic Approach to Kubernetes Cluster Health and Diagnostics

Initial Diagnostic Methodology When a Kubernetes cluster behaves unexpectedly, a systematic troubleshooting approach is crucial. Begin by observing the failure's symptoms to formulate an initial hypothesis about the root cause. Subsequently, utilize command-line tools, monitoring dashboards, and log data to validate or refute this hypothesis. R ...

Posted on Mon, 27 Jul 2026 16:52:53 +0000 by niwa3836

Installing Elasticsearch 7.x on Linux Systems

This guide covers the complete process of setting up Elasticsearch 7.x on a Linux environment, including download, configuration, user setup, and automatic startup configuration. Downloading the Distribution Package Obtain the desired Elasticsearch version from the official archive repository. The folowing commands download the archive and extr ...

Posted on Fri, 17 Jul 2026 17:06:35 +0000 by akjackson1

Deploying Docker Engine on Ubuntu 20.04

Overview of Docker Containerization Docker functions as an open-source platform designed for containerization, facilitating the build, test, and deployment processes. Applications are packaged into movable containers that include all necessary dependencies, ensuring consistent execution across different environments. This technology is integral ...

Posted on Sun, 12 Jul 2026 16:24:14 +0000 by rmbarnes82

Troubleshooting RPCbind Service Startup Failure on CentOS 7

RPCbind Service Failure on CentOS 7.4 Issue Summary After rebooting a virtual machine, NFS mounts configured in /etc/rc.local failed to execute properly. Root Cause Analysis The root cause was that the rpcbind service failed to start, which prevented NFS mounts from functioning. Attempting to restart the service reuslted in the following error: ...

Posted on Wed, 08 Jul 2026 16:46:52 +0000 by mjseaden

Deploying an etcd Cluster Using Static Configuration

To deploy a highly available etcd cluster using static configuration, each node must be explicitly defined at startup. This method requires specifying all peer endpoints in advance and is suitable for environments with fixed infrastructure. Key etcd Startup Parameters --data-dir: Directory for storing node data such as snapshots, WAL files (un ...

Posted on Sat, 04 Jul 2026 16:36:18 +0000 by sn0n

Installation and Basic Configuration of MySQL 5.7 on Linux

Introduction Data is stored in various formats including text, images, and video, which computers interpret as binary or hexadecimal machine language. Depending on the importance and complexity of the information, different management strategies are required. Databases are best suited for storing critical data with complex relationships. Datab ...

Posted on Sun, 21 Jun 2026 16:51:12 +0000 by misterph

Recovering a Deepin System from Boot Failure Caused by Removing systemd

Background systemd acts as the initialization system and service manager for the majority of modern Linux distributions, including Deepin. It is responsible for booting the user space and managing system services. The apt-get autoremove utility is designed to clean up packages that were installed as dependencies but are no longer required. Howe ...

Posted on Sat, 20 Jun 2026 17:25:15 +0000 by frao_0

Building and Integrating QtMQTT on Kylin Linux for IoT Applications

QtMQTT is a Qt-based client library that enables MQTT protocol communication with brokers, commonly used in embedded and IoT scenarios. Kylin Linux—a domestic Chinese OS derived from Ubuntu—is widely deployed in secure industrial and edge environments. This guide walks through building, testing, and system-integrating QtMQTT on Kylin Linux (v10 ...

Posted on Fri, 19 Jun 2026 16:27:29 +0000 by DimeDropper

High-Performance Web Server with Nginx: Compilation, Installation, and Smooth Upgrade

Introduction to Nginx Installation Methods I/O Models and Zero-Copy Technology Process Architecture Configuration Optimization Smooth Upgrade Procedures Introduction to Nginx Nginx is a high-performance web server developed in 2002 by Russian engineers for Rambler.ru. Acquired by F5 in 2019 for $670M, it's used by major interne ...

Posted on Wed, 10 Jun 2026 18:58:09 +0000 by rahulephp