Installing and Configuring Memcached on CentOS 7

Installing Memcached Dependencies Memcached requires the libevent librrary to function properly. Install it using the package manager: yum install libevent libevent-devel Installing Memcached With the dependencies in place, install Memcached: yum install memcached Running Memcached as a Background Service Execute Memcached as a daemon with ap ...

Posted on Sun, 30 Aug 2026 16:17:27 +0000 by Bourgeois

Installing MySQL 5.7 on CentOS 7 via Yum Repository

Removing Existing Database PackagesCentOS 7 typically ships with MariaDB as the default database, which conflicts with MySQL. Before installation, check for and remove any existing MySQL or MariaDB installations.rpm -qa | grep -E 'mysql|mariadb'If MariaDB libraries are present, remove them. Note that dependent packages like postfix might block ...

Posted on Sat, 29 Aug 2026 16:36:31 +0000 by smoothrider

Implementing High Availability for Web Services with Heartbeat

All demonstrations are performed in VMware virtual machines. Operating System: CentOS 6.5 64-bit High Availability Software: Heartbeat 3.0.4 Web Application Server: Apache HTTPD 2.2.15 Network Configuration and Resource Planning Hostname Interface IP Address Purpose ha-primary eth0 172.18.10.227 External management IP for WAN traffic ...

Posted on Thu, 27 Aug 2026 16:27:19 +0000 by phpwolf

Installing Docker on CentOS 7 with Common Pitfalls and Solutions

System Requirements Verification Verify Linux system parameters before Docker installation: cat /etc/redhat-release uname -r Environment Preparation Install essential packages if not present: yum -y install gcc gcc-c++ Docker Removal (For Fresh Install) Stop and remove existing Docker installations: systemctl stop docker yum remove docker doc ...

Posted on Tue, 25 Aug 2026 16:37:42 +0000 by Stressed

Installing and Configuring Snort on CentOS 6.5

Prerequisties yum install flex bison libpcap libpcap-devel zlib zlib-devel glibc-headers gcc-c++ make -y Enstalling Dependencies tar -zxf libdnet-1.11.tar.gz cd libdnet-1.11 ./configure && make && make install tar -zxf pcre-8.39.tar.gz cd pcre-8.39 ./configure && make && make install Installing DAQ tar -zxf da ...

Posted on Tue, 25 Aug 2026 16:22:55 +0000 by Opticon

Deploying a Kubernetes 1.16.4 HA Cluster on CentOS 7.6 with Keepalived

Environment Overview Hostname OS Version IP Address Components Hardware Role master01 CentOS 7.6.1810 172.27.34.3 Docker 18.09.9, Flannel v0.11.0, Keepalived v1.3.5 4C4G control plane master02 CentOS 7.6.1810 172.27.34.4 Docker 18.09.9, Flannel v0.11.0, Keepalived v1.3.5 4C4G control plane master03 CentOS 7.6.1810 172.27.34.5 Docker ...

Posted on Mon, 24 Aug 2026 16:08:17 +0000 by Saethyr

Setting Up MySQL Master-Slave Replication

Anvironment Preparation # Install wget if missing sudo yum install -y wget # Download MySQL community repository package wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm # Install the repository RPM package sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm # Install MySQL server, confirm all prompts with 'y' sudo yum ...

Posted on Sat, 22 Aug 2026 16:13:09 +0000 by Norsk.Firefox

Installing PHP 7.4 via Yum on CentOS 7

Installation via Yum Yum automates the instalation process by resolving and installing all required software dependencies. In CentOS 7, system services are managed with systemctl. A yum installation automatically registers the service, allowing you to start it with commands like systemctl start php74-php-fpm.service. The primary disadvantage is ...

Posted on Tue, 18 Aug 2026 16:15:04 +0000 by kemper

Deploying and Configuring Zabbix Monitoring Infrastructure

Core ArchitectureCentral Server: The primary hub that processes metrics, triggers, and alerts received from monitoring nodes.Data Storage: A backend database (e.g., MySQL/PostgreSQL) retaining all configuration metrics and historical data.Web Interface: The dashboard for visualization and administration, typically co-located with the central se ...

Posted on Mon, 17 Aug 2026 16:12:33 +0000 by eheia

Deploying and Troubleshooting BIND DNS Services on CentOS

Setting Up BIND To establish a DNS server on CentOS, begin by ensuring your local package repository metadata is current: sudo yum update -y Install the BIND software suite and associated diagnostic utilities: sudo yum install -y bind bind-utils Enable the service to run on system boot and initialize it immediately: sudo systemctl enable name ...

Posted on Sun, 16 Aug 2026 16:52:19 +0000 by computerbum