Install MongoDB on Debian 10

Install MongoDB on Debian 10

Follow through this tutorial to learn how to install MongoDB on Debian 10. According to mongodb.com, “MongoDB is a general purpose, document-based, distributed database built

Install LAMP Stack on Ubuntu 20.04

Welcome to our guide on how to install LAMP Stack on Ubuntu 20.04. If you are looking at building some web application, LAMP stack is

install apache guacamole

Configure Guacamole MySQL Database Authentication

In this tutorial, you will learn how to configure Guacamole MySQL database authentication. Guacamole supports various authentication mechanisms including database authentication via MySQL, PostgreSQL, or

Install MySQL 8 on FreeBSD 12

In this tutorial, we are going to learn how to install MySQL 8 on FreeBSD 12. MySQL 8 can be installed on FreeBSD 12 using

postgresql

Install PostgreSQL on Rocky Linux 8

In this tutorial, you will learn how to install PostgreSQL on Rocky Linux 8.  PostgreSQL is a fully featured object-relational database management system. It supports a

Install MariaDB 10.3 on CentOS 7

This guide will quickly take you through how to install MariaDB 10.3 on CentOS 7. The current stable release of MariaDB is v10.3.15. Se how

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); }); }); }); });