Manual WordPress Deployment on Rocky Linux 8.9 with LAMP Stack
Environment Setup
Rocky Linux 8.9 is used as the depolyment environment. Install Apache, MariaDB, and PHP manually. Disable SELinux and firewalld for testing purposes:
# Set SELinux to permissive mode temporarily
setenforce 0
# Disable firewalld
systemctl stop firewalld
systemctl disable firewalld
Apache Configuration
Installation
yum install ...
Posted on Wed, 20 May 2026 01:59:38 +0000 by fragger
Deploying a Standalone MinIO Instance on Rocky Linux 9
Install Server and Client Packages
# Install MinIO server package
rpm -ivh https://dl.minio.org.cn/server/minio/release/linux-amd64/minio-20230518000536.0.0.x86_64.rpm
# Install MinIO client package
rpm -ivh https://dl.minio.org.cn/client/mc/release/linux-amd64/mcli-20230518165900.0.0.x86_64.rpm
Define Environment Variibles for MinIO
Create / ...
Posted on Sun, 17 May 2026 02:33:38 +0000 by lyealain