Configuring Apache HTTP Server as a Reverse Proxy and Load Balancer
The following procedure outlines the deployment of an Apache HTTP Server instance configured as a reverse proxy and load balancer for multiple backend application servers. The architecture utilizes a front-end proxy layer distributing traffic across two back-end web nodes.
Environment Preparation and Back-End Node Configuration
Initialize two L ...
Posted on Mon, 07 Sep 2026 16:18:59 +0000 by ojeffery
Deploying a WebLogic Service on SUSE Linux Enterprise Server 11 SP3
System environment setup
Target system: SUSE Linux Enterprise Server 11 SP3.
User and group preparation
Create a dedicated group and user for running the application, along with necessary directory structures.
# Create group named wlgroup
/usr/sbin/groupadd wlgroup
# Create home directory for the service account
mkdir -p /opt/wluser
# Add use ...
Posted on Fri, 28 Aug 2026 16:37:47 +0000 by padma
Secure Shell Configuration and Key-Based Authentication Guide
OpenSSH is typically pre-installed on modern Linux distributions. If the daemon or client utilities are missing, install them using the native package manager:
# Debian/Ubuntu families
sudo apt update && sudo apt install openssh-server openssh-client
# RHEL/CentOS/Fedora families
sudo dnf install openssh-server openssh-clients
Enable ...
Posted on Mon, 24 Aug 2026 16:38:43 +0000 by orange08
Deploying a Multi-Node Kubernetes Cluster with Kubeadm
Infrastructure Requirements
Before initiating the deployment, ensure your environment meets the following specifications:
Operating System: CentOS 7.x (64-bit).
Hardware: Minimum 2 CPUs, 2GB RAM, and 30GB disk space.
Connectivity: Full network interoperability between all nodes and internet access for image retrieval.
System State: Swap must b ...
Posted on Sun, 23 Aug 2026 16:25:06 +0000 by fatepower
Configuring MySQL Master-Slave Replication on Linux
Environment Preparation
Operating System: Linux (CentOS/RHEL)
Database Version: MySQL 5.7+
Primary Node IP: 10.0.0.10
Secondary Node IP: 10.0.0.20
Initializing the Database Schema
Execute the following SQL command on both the primary and secondary instances to ensure schema consistency before enabling replication:
CREATE DATABASE app_data;
P ...
Posted on Sat, 15 Aug 2026 17:00:03 +0000 by franklyn
Docker Engine and Compose Installation on CentOS 7 with Mirror Optimization
Yum Repository Configuration
Update the package manager to utilize accelerated mirrors. Preserve the existing configuration before modifications:
cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
Fetch the updated repository definition:
curl -fsSL -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Cen ...
Posted on Fri, 07 Aug 2026 16:21:12 +0000 by ShanesProjects
Upgrading Python to 2.7 and Installing IPython on CentOS 6.5
Standard distributions of CentOS 6.5 include Python 2.6.6, which often lacks compatibility with modern tools such as IPython 2.3. This tool requires a minimum version of Python 2.7 or Python 3.3+. To resolve this dependency, the interpreter must be compiled from source and intgerated into the system path while preserving existing system utiliti ...
Posted on Thu, 02 Jul 2026 16:02:49 +0000 by phu
Secure Remote Server Management with Xshell and SSH
Managing Linux servers remotely using Xshell and SSH is one of the most widely adopted practices in system administration today. This method relies on two core technical domains:
Computer networking
Encryption and decryption
While not exclusive to system engineers, this toolchain is frequently used by developers and DevOps engineers alike. En ...
Posted on Tue, 19 May 2026 06:59:51 +0000 by automatix
Apache Hadoop Deployment Strategies and HDFS Initialization on Docker
Local Mode (Standalone): In this configuration, Hadoop functions purely as a library. It executes MapReduce jobs on a single machine without managing background processes. This mode is intended solely for debugging code and rapid prototyping.
Pseudo-Distributed Mode: Here, all Hadoop daemons run as separate background processes on a single hos ...
Posted on Mon, 18 May 2026 22:40:05 +0000 by The Cat
Administering Linux Systems: Software, Logging, and Hardware Essentials
Managing Software Packages with YUM
Linux applications are frequently installed under the /usr/local hierarchy. Configuring a reliable mirror significantly improves download speeds and stability.
To replace the default repository with Alibaba Cloud's CentOS mirror, execute:
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/rep ...
Posted on Fri, 15 May 2026 02:15:15 +0000 by kristian_gl