Fading Coder

One Final Commit for the Last Sprint

Deploying an ASP.NET Core 7 App on CentOS 7.9 with aaPanel

Switch to the root account before anything else: sudo -i Install aaPanel 8.x # CentOS 7/8 yum install -y wget \ && wget -O install.sh http://download.bt.cn/install/install_6.0.sh \ && bash install.sh # Ubuntu / Deepin wget -O install.sh https://download.bt.cn/install/install-ubuntu_6...

Installing Docker CE on CentOS 7 via YUM Repository Configuration

System Prerequisites Verification Prior to installation, verify the operating system release to ensure compatibility, as Docker requires a CentOS 7 environment or newer. This can be checked using the following command: lsb_release -a Additionally, the system architecture must be 64-bit with a kernel...

Setting Up a Three-Node Elasticsearch Cluster on CentOS 7

Prerequisites Java Runtime Environment Install the Java 8 runtime environment: yum install -y java-1.8.0 Swap Deactivation Disable swap memory to ensure stability: # Edit fstab to comment out swap entries vim /etc/fstab # Immediately disable all swap partitions swapoff -a System Resource Tuning File...

Manual Static IP Configuration for CentOS 7 Network Interfaces

Identifying Active Network Hardware List available interfaces and their current state: nmcli device status Typical output includes the local loopback (lo at 127.0.0.1/8), physical adapters such as ens192 or enp0s3, and virtual devices like Docker bridges or VLAN sub-interfaces. Physical adapters hen...

MySQL 5.7 Deployment on CentOS 7: Repository, RPM, and Binary Installation Methods

Post-Installation Verification After completing any installation method below, verify connectivity and reset credentials: mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'SecureP@ssw0rd!'; Query OK, 0 rows affected (0.01 sec) mysql> CREATE DATABASE app_database; Query OK, 1 row affected (0....

CentOS 7 Single-Node Deployment: Nginx, MySQL, Nacos, Kafka, Redis, MinIO, kkFileView, and EMQX

Environment Preparation This guide covers deploying a complete service stack on CentOS 7. The /data/ directory serves as the mounted storage location, with installation packages stored in /data/install-page. 1. Setting Up Local YUM Repository Creating Mount Point mkdir -p /mnt/centos Mounting ISO Im...