Durchsuchen nach
Schlagwort: database

How to update MongoDB Compass? (In my case: AlmaLinux)

How to update MongoDB Compass? (In my case: AlmaLinux)

What is MongoDB Compass GUI? MongoDB Compass is a free graphical tool for querying and managing your database. Under the hood, it is built with Electron—a framework that uses Chromium and Node.js. What is Electron? Electron allows developers to build desktop applications using web technologies like JavaScript, HTML, and CSS. The biggest advantage is that it is cross-platform, meaning it runs seamlessly on Windows, macOS, and Linux. Is MongoDB Compass in the official Linux repositories? No. Unlike the MongoDB database…

Weiterlesen Weiterlesen

How to do some admin works with MariaDB and Python

How to do some admin works with MariaDB and Python

The challenge for every administrator, especially database administrators, naturally lies in keeping track of what their own system is doing. I’m not a database administrator, meaning I don’t work full-time in this field 40 hours a week. But even for the hobbyist database administrator using MariaDB, some of this information is quite useful. But I’ve been interested in databases for many years. I’m fascinated by data storage, because we encounter countless databases every day, even if we’re not aware of…

Weiterlesen Weiterlesen

What you can animate with Python for your physics learning

What you can animate with Python for your physics learning

Here is the video to the is script here You want to see more? How to Run This Simulation To get the Stoppenberg (is the name of a quarter of the town in Essen here in the West-Germany – we have a lot of hills here) Physics Sim running on your local machine, follow these three simple steps: 1. Install the Prerequisites First, ensure you have Python installed. Then, open your terminal (Fedora) or Command Prompt (Windows) and install the…

Weiterlesen Weiterlesen

MySQL 8 – Reset Root Password in 5 Minutes

MySQL 8 – Reset Root Password in 5 Minutes

*(2025 Working Method – no mysqld_safe needed)* Tested on MySQL 8.0 / 8.1 / 8.4 / 8.5 – Ubuntu, Debian, Fedora, Rocky Linux, AlmaLinux Since MySQL 8.x the old `mysqld_safe` command has been removed. All the old tutorials on the internet will fail. This guide works 100 % in 2025.

MongoDB in general

MongoDB in general

General information about MongoDB What is MongoDB? MongoDB is a document-oriented NoSQL database that stores data in flexible, JSON-like documents, allowing for easy storage and retrieval of structured, semi-structured, and unstructured data. Unlike traditional relational databases that use tables and rows, MongoDB uses collections and documents, making it more adaptable to changing data structures. It was designed to handle large volumes of data and is known for its scalability, flexibility, and ease of use.  On Linux, you can check the status of the server…

Weiterlesen Weiterlesen