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
Building a Hadoop Cluster on CentOS 7
Biulding a Single-Node Hadoop Installation
For instructions on setting up a single-node Hadoop installation, please refer to: https://example.com/single-node-hadoop-setup
Creating a Hadoop Cluster
Cloning Virtual Machines
Right-click on hadoop1 → Manage → Clone
Click Next
Select the current state of the virtual machine → Click Next
Choose Crea ...
Posted on Fri, 15 May 2026 14:12:50 +0000 by ondi
Setting Up MySQL Containers on CentOS 7 Using Docker
Preparing Mount Points
Create directories for persistent configuration and data storage:
mkdir -p /opt/mysql-instance/{conf,storage}
Configuring Character Sets
Create the configuration file at /opt/mysql-instance/conf/custom.cnf:
[mysqld]
user=mysql
character-set-server=utf8mb4
[client]
default-character-set=utf8mb4
[mysql]
default-character ...
Posted on Fri, 15 May 2026 00:09:03 +0000 by contex