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

Install MariaDB 11.x on Linux

Install MariaDB 10.8 on Ubuntu 20.04

Follow through this guide to learn how to install MariaDB 10.8 on Ubuntu 20.04. MariaDB 10.8.2 is the current RC release version of MariaDB. Install

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

Install pgAdmin 4 on Debian 12

Install pgAdmin 4 on Debian 12

This tutorial will take you through how to install pgAdmin 4 on Debian 12. pgAdmin 4 is a popular graphical tool with an intuitive user

Install phpMyAdmin on Debian 12

Install phpMyAdmin on Debian 12

In this guide, we are going to learn how to install phpMyAdmin on Debian 12. phpMyAdmin is a free and opensource application written in PHP

Install phpMyAdmin with Nginx on Fedora 30

This guide will take you through how to install phpMyAdmin with Nginx on Fedora 30. As you already know, phpMyAdmin enables administration of MySQL/MariaDB operations

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