Cómo instalar MariaDB en Ubuntu 20.04 [Guía de inicio rápido]
Brian Boucheron escribió una versión anterior de este tutorial. MariaDB es un sistema de administración relacional de bases de datos de código abierto, que comúnmente se utiliza como…
Brian Boucheron escribió una versión anterior de este tutorial. MariaDB es un sistema de administración relacional de bases de datos de código abierto, que comúnmente se utiliza como…
MongoDB is an open-source document database used commonly in modern web applications. It is classified as a NoSQL database because it does not rely on a traditional table-based relational database structure. Instead, it uses JSON-like documents with dynamic schemas. In this tutorial you’ll install MongoDB on an Ubuntu 18.04 server, test it, and learn how to manage it as a systemd service.
Introduction MySQL is an open-source database management system, commonly installed as part of the popular LEMP (Linux, Nginx, MySQL/MariaDB, PHP/Python/Perl) stack. It implements the relational model and Structured Query Language (SQL) to manage and query data. This tutorial explains how to install MySQL version 8 on a Rocky Linux 8 server. Prerequisites To complete this […]
Learn how to install MySQL on Ubuntu with this step-by-step guide. Configure MySQL, set up security, and troubleshoot installation issues
In this tutorial, we will install the MySQL official apt software repository, then install the MySQL software itself, secure the installation, and finish up with testing that MySQL is running and responding to commands.
Автор выбрал фонд Apache Software Foundation для получения пожертвования в рамках программы Write for DOnations. Триггер…
Redis — хранилище ключей в памяти с открытым исходным кодом. В Redis отсортированные наборы данных — это тип данных, аналогичный наборам данных в том, что оба типа…
Der Autor wählte die Free Software Foundation, um eine Spende im Rahmen des Programms Write for DOnations zu erhalten. ProxySQL ist ein SQL-fähiger Proxy-Server, der zwischen Ihrer…
O Redis é um datastore ou armazenamento de dados open-source de chave-valor na memória. O Redis lhe permite planejar uma sequência de comandos e executá-los um após o outro, um procedimento conhecido como transação. Cada transação é tratada como uma…
One method PostgreSQL uses to maintain ACID properties is Write-Ahead Logging (WAL). For example, a secondary database cluster can use the archived WAL file for replication purposes, but you can also use the files to perform point-in-time-recovery (PITR). In this tutorial, you will set up continuous archiving with a PostgreSQL 12 cluster on Ubuntu 20.04 and perform PITR on the cluster.