Setting up a Three-Node Kafka+ZooKeeper Cluster on CentOS 7
Environment Setup
JDK Installation
yum install -y java-1.8.0
ZooKeeper Cluster Configuration
Downloading ZooKeeper
wget https://archive.apache.org/dist/zookeeper/zookeeper-3.7.0/apache-zookeeper-3.7.0-bin.tar.gz
tar xf apache-zookeeper-3.7.0-bin.tar.gz
Configurasion File Adjustments
# Backup sample configuration
# cp zoo_sample.cfg zoo.cfg
c ...
Posted on Fri, 22 May 2026 22:30:35 +0000 by fredriksk
Deploying a Containerized Nginx and PHP-FPM Stack on CentOS 7
Host System RequirementsTarget Operating System: CentOS 7.xMinimum Resources: 4GB RAMInstalling the Docker EngineFirst, update the system repositories and remove any obsolete Docker versions:sudo yum update -y
sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
...
Posted on Wed, 20 May 2026 16:24:58 +0000 by jrobles
Installing MySQL 8.0 on Tencent Cloud Lighthouse Server Running CentOS
Setting Up Your Tencent Cloud Account
Before proceeding, ensure you have an active Tencent Cloud account. If you are new to the platform, complete the registration process first. Existing users can simply sign in to their dashboards.
Account Verification
After registration, you must complete real-name authentication as required by Chinese cloud ...
Posted on Tue, 19 May 2026 23:27:22 +0000 by dandaman2007
Installing and Configuring GitLab on CentOS 7: A Complete Guide
Understanding GitLab
GitLab is an open-source version management system built with Ruby on Rails. It provides a self-hosted Git repository solution that integrates code托管, testing, and deployment capabilities. Through its web interface, you can access both public and private projects. Similar to GitHub, GitLab enables code browsing, issue tra ...
Posted on Mon, 18 May 2026 21:30:56 +0000 by Shawnaize
Installing and Configuring NGINX with SSL on Red Hat Enterprise Linux
Prerequisites
Ensure you have root or sudo privileges on a Red Hat Enterprise Linux 9 or CentOS Stream system.
Configuring the NGINX Repository
Install the yum utilities package to manage repositories:
sudo dnf install -y yum-utils
Create the official NGINX repository configuration file:
sudo tee /etc/yum.repos.d/nginx.repo <<'EOF'
[ngin ...
Posted on Sun, 17 May 2026 11:32:36 +0000 by bodzan
Enterprise SVN Deployment: From Setup to Team Collaboration Workflow
Subversion (SVN) remains a critical version control solution for enterprise development environments due to its centralized architecture and stability. This guide provides a comprehensive deployement strategy covering server configuration, security settings, and collaborative workflows.
CentOS-Based SVN Server Installation
Begin by installin ...
Posted on Sat, 16 May 2026 11:07:11 +0000 by mikevarela
Installing Jira and Confluence on CentOS 7.4
Introduction
This guide covers the installation of Jira and Confluence on CentOS 7.4. The instructions are based on Jira version 9.11.3 and Confluence version 8.6.1, but the process is similar for other versions.
Prerequisites
A CentOS 7.4 system
Basic Linux command-line knowledge
Java installed
System Time Verification
Check the system date ...
Posted on Sat, 16 May 2026 06:56:17 +0000 by s_bastian
Configuring Rsync for Automated Remote File Synchronization
Setting up an Rsync daemon on a server enables efficient and secure file mirroring to remote clients. This guide walks through deploying a sync service on 192.168.18.211 to replicate /root/rsync-server/ to a client's /root/rsync-local directory, leveraging CentOS 6.5's built-in rsync capabilities.
Verification and Installation
Confirm rsync is ...
Posted on Fri, 15 May 2026 21:00:30 +0000 by phpyoungdeveloper
Setting Up a Linux Development Environment on a Cloud Server
There are three primary approaches to setting up a Linux environment:
Method
Description
Dual Boot
Installing Linux directly on physical hardware alongside another OS. This is generally not recommended due to poor desktop usability.
Virtual Machine
Running Linux inside software like VMWare. This can be problematic due to software bugs ...
Posted on Fri, 15 May 2026 17:27:26 +0000 by walter8111
Setting Up Hadoop 2.10 Pseudo-Distributed Mode on CentOS 7
This guide walks through the steps to set up a Hadoop 2.10 pseudo-distributed cluster on a single CentOS 7 virtual machine.
1. Create a Hadoop User and Group
We will create a dedicated user hdfs and configure it with appropriate permissions.
As root user:
Create the hdfs user and set a password:
adduser hdfs
passwd hdfs
Add the user to the hdf ...
Posted on Fri, 15 May 2026 14:47:48 +0000 by ron8000