Restricting MongoDB’s Network Exposure
Part of a series of conceptual articles outlining security best practices in MongoDB, this guide focuses on strategies for limiting network access to a running Mongo instance.
Part of a series of conceptual articles outlining security best practices in MongoDB, this guide focuses on strategies for limiting network access to a running Mongo instance.
A database is a collection of structured information organized in a way that it can be easily accessed, managed, and updated by computer programs.
MySQL est un système de gestion de base de données Open Source, couramment installé dans le cadre de la pile LAMP (Linux, Apache, MySQL,…
Learn how to connect to your PostgreSQL database using Python and securely fetch data.
The most common cause of crashes in MySQL is that it stopped or failed to start due to insufficient memory. To check this, you will need to review the MySQL error log after a crash. First, attempt to start the MySQL server by typing: sudo systemctl start mysql Then…
O Redis é um datastore ou armazenamento de dados open-source de chave-valor na memória. O Redis possui vários comandos que lhe permitem fazer rapidamente alterações nas definições de configuração do servidor Redis. Este tutorial abordará alguns desses…
In this tutorial, you will set up MySQL group replication using a set of three Ubuntu 20.04 servers. As you work through this tutorial, you will have the option to set the group up as either a single-primary or multi-primary replication group.
In this tutorial, learn how to set up a one-to-many relationship in Laravel Eloquent. You’ll modify the initial database structure from the Landing Laravel demo application to include a second table, which you will use to organize links into lists.
When working with database query results, it is often useful to obtain only the total number of rows in a result set, instead of pulling the full dataset content with a regular query. Eloquent offers a few different aggregate methods that return a scalar value instead of an Eloquent object, such as count(), max(), and sum(). In this part of the series, you’ll update the main application view to show the total number of links in each list, using the count() method.
Redis adalah penyimpanan nilai kunci dalam memori yang dikenal karena fleksibilitas, kinerja, dan dukungan bahasanya yang luas. Tutorial ini mendemonstrasikan cara menginstal dan mengonfigurasi Redis pada server Ubuntu 20.04.