Enable MSSQL Server and Database Level Auditing

This guide describes how to enable MSSQL server and database level auditing. Database auditing basically involves capturing and  monitoring database activities. The server-level audit involves

Install MongoDB on Ubuntu 20.04

Install MongoDB on Ubuntu 20.04

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

How Does Website Hosting Work?

How Does Website Hosting Work?

If you’ve ever wondered how websites are made, there are a few important things you should know about website hosting. Just like when you rent

Best GUI Tools for MySQL on Linux

Best GUI Tools for MySQL on Linux

The extensive data ecosystem includes MySQL as one of its most popular technologies. It is a Relational Data Base Management System (RDBMS) developed by Oracle

mysql 8.0

Install MySQL 8 on Debian 11

This guide provides a step-wise tutorial on how to install MySQL 8 on Debian 11. MySQL is a fast, stable and true multi-user, multi-threaded SQL database server

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

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