Installing MySQL 5.6 from Source on Linux: A Complete Configuration Guide
System Preparation and Configuration
Building MySQL 5.6 from source requires careful system tuning to ensure optimal database performance. This guide covers the essential configuration steps needed before installation.
Storage Configuration
For production environments, RAID 10 provides the best balance between read performance, write performanc ...
Posted on Sat, 13 Jun 2026 16:47:42 +0000 by jmandas
Installing Zabbix from Source Code
1. Zabbix Server Installation
First, install the required dependencies for compiling Zabbix from source:
yum install libxml2-devel net-snmp-devel libevent-devel curl-devel pcre* mariadb-devel php-fpm
Configure and compile Zabbix with the necessary options:
./configure --prefix=/usr/local/zabbix --enable-server --enable-agent \
--enable-pro ...
Posted on Sun, 17 May 2026 23:54:46 +0000 by paul_so40