Fading Coder

One Final Commit for the Last Sprint

Troubleshooting automysqlbackup 'Dependency programs are missing: mysql not found' Database Backup Error

I recently configured a MySQL database backup job on a Linux server using automysqlbackpu, only to find the backup directory empty after the scheduled run. Executing the backup script directly revealed the error: automysqlbackup- Error: Dependency programs are missing. mysql …… Below is the full con...

Set Up a Single-Node RocketMQ Cluster with Admin Console and Java Test Utilities

Environment Requirements Linux operating system JDK 1.8 installed RocketMQ vertion 4.9.4 Download RocketMQ Retrieve the binary package from the Apache archive: https://archive.apache.org/dist/rocketmq/ Installation Steps 1. Extract the Package unzip rocketmq-all-4.9.4-bin-release.zip Note: If unzip...

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....

Offline and Online Yum Repository Configuration for CentOS 6.7

Offline Local Yum Repository Setup Prepare ISO Storage and Mount Points mkdir -p /app/centos-iso-mount mkdir -p /data/iso-files Upload the CentOS-6.7-x86_64-bin-DVD1.iso file to /data/iso-files. Mount the ISO Image mount -o loop /data/iso-files/CentOS-6.7-x86_64-bin-DVD1.iso /app/centos-iso-mount Ad...