Most Popular

More
Install Apache Web Server on Debian 12
HowTos, Apache, Security, SSL/TLS, Web Servers

Install Apache Web Server on Debian 12

monitor docker containers using nagios
Monitoring, Containers, Docker, HowTos

How to Monitor Docker Containers using Nagios

Easily Configure Elasticsearch HTTPS Connection
Security, Elastic Stack, HowTos, Monitoring

Easily Configure Elasticsearch HTTPS Connection

Monitoring

More
osquery manager

Integrate Osquery Manager with ELK Stack

gen_too

This guide will take you through how to integrate Osquery manager with ELK Stack. According …

install Fleet osquery manager on Ubuntu 20.04

Install Fleet Osquery Manager on Ubuntu 20.04/Ubuntu 22.04

koromicha

In this tutorial, you will learn how to install Fleet osquery manager on Ubuntu 20.04/Ubuntu …

Setup Multi-node Elasticsearch Cluster

Setup Multinode Elasticsearch 8.x Cluster

gen_too

Follow through this tutorial to learn how to setup multinode Elasticsearch 8.x cluster. As of …

Install and Configure Zabbix

Install Zabbix Server on Debian 10 Buster

koromicha

In this guide, we are going to learn how to install Zabbix server on Debian …

Installing Linux Dash with Nginx on Ubuntu 18.04 LTS

koromicha

This guides presents a simple way installing Linux Dash with Nginx on Ubuntu 18.04 LTS. …

Storage

More
Install and Setup GlusterFS on Ubuntu

Install and setup GlusterFS on Ubuntu 22.04/Ubuntu 20.04

Welcome to our guide on how to install and setup GlusterFS on Ubuntu 22.04/Ubuntu 20.04. …

Install and Configure iSCSI Storage server on CentOS

Install and Configure iSCSI Storage Server on Ubuntu 24.04

In this tutorial you will learn how to install and configure iSCSI storage server on …

document.addEventListener("DOMContentLoaded", function() { document.querySelectorAll(".scroll-box").forEach(function(box) { box.style.position = "relative"; // Needed for absolute positioning of button var button = document.createElement("button"); button.className = "copy-icon-btn"; button.setAttribute("aria-label", "Copy code"); button.innerHTML = ''; box.appendChild(button); button.addEventListener("click", function() { var text = box.innerText; navigator.clipboard.writeText(text).then(function() { button.querySelector("svg").setAttribute("fill", "#4CAF50"); setTimeout(function() { button.querySelector("svg").setAttribute("fill", "white"); }, 1500); }).catch(function(err) { console.error("Copy failed: ", err); }); }); }); });