NoSQL

Cara Menginstal MongoDB pada Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

Cara Menginstal MongoDB pada Ubuntu 20.04

MongoDB adalah basis data dokumen sumber terbuka yang banyak digunakan dalam aplikasi web modern. MongoDB digolongkan sebagai basis data NoSQL karena tidak bergantung pada struktur basis data relasional berbasis tabel tradisional. Alih-alih, MongoDB menggunakan dokumen seperti JSON dengan skema dinamis. Dalam tutorial ini, Anda akan menginstal MongoDB pada server Ubuntu 20.04, mengujinya, dan mempelajari cara mengelolanya sebagai layanan systemd.

Read more
How To Manage Sets in Redis — step-by-step Linux tutorial on Progressive Robot

How To Manage Sets in Redis

Sets in Redis are collections of strings stored at a given key. When held in a set, an individual record value is referred to as a member. Unlike lists, sets are unordered and do not allow repeated values. This tutorial explains how to create sets, retrieve and remove members, and compare the members of different sets.

Read more
How To Secure MongoDB on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Secure MongoDB on Ubuntu 18.04

MongoDB doesn’t have authentication enabled by default, meaning that any user with access to the server where the database is installed can add and delete data without restriction. In order to secure this vulnerability, this tutorial will walk you through creating an administrative user and enabling authentication. You’ll then test to confirm that only this administrative user has access to the database.

Read more
Scaling Ruby on Rails: Setting Up A Dedicated MySQL Server (part 2) — step-by-step Databases tutorial on Progressive Robot

Scaling Ruby on Rails: Setting Up A Dedicated MySQL Server (part 2)

In this second part of our Scaling-Rails the cloud provider article series, we are going to see how to create a droplet to host the database layer, for application servers to connect-to and work-with. Our aim here is to minimize the chances of letting a Single Point of Failure (SPoF) emerge as a possible culprit of downtime (or loss), by distinctively delegating one single task per server.

Read more
CHAT