Image: MariaDB vs. MongoDB: How do they compare?Titima OngkantongShutterstock

MariaDB vs. MongoDB: How do they compare?

MariaDB vs MongoDB – which database is the better fit for your project? MariaDB delivers proven SQL performance, strong data integrity and reliability, while MongoDB takes a document-oriented approach with schemaless storage, built-in scalability and flexible data modeling. In…

Read more
Image: How to install MariaDB via DockerTitima OngkantongShutterstock

How to install MariaDB via Docker

With Docker, you can set MariaDB up in just a few steps and avoid complex local installation. The database runs in isolation from the rest of the system, preventing conflicts when testing different versions. You can back up and restore data as needed to create a flexible,…

Read more
Image: How to set the maximum data packet size with MariaDB max_allowed_packetTitima OngkantongShutterstock

How to set the maximum data packet size with MariaDB max_allowed_packet

The system variable MariaDB max_allowed_packet determines the maximum size a single data packet can be during communication between client and server. If the value is too low, larger data imports or SQL queries will fail with error messages. This parameter can be specifically…

Read more
Image: How to use MariaDB SHOW DATABASES to list databasesTitima OngkantongShutterstock

How to use MariaDB SHOW DATABASES to list databases

The MariaDB SHOW DATABASES command lists all databases on the server, giving you a quick and comprehensive overview in the command line or an SQL client. In multi-user environments, it makes it easier to identify which databases are currently available, even in complex setups or…

Read more
Image: How to change a MariaDB user passwordTitima OngkantongShutterstock

How to change a MariaDB user password

Use the command `SET PASSWORD` in MariaDB to securely and easily change the passwords of users. Regularly updating credentials protects your database from unauthorized access and improves overall system security. This MariaDB change user password tutorial shows you how to…

Read more
Image: How to configure and enable MariaDB logsTitima OngkantongShutterstock

How to configure and enable MariaDB logs

MariaDB records important events in various log files, including errors, general queries, slow SQL commands as well as binary changes. These detailed MariaDB logs help with troubleshooting, performance optimization and proactive security monitoring. In this practical guide, we’ll…

Read more
Image: How to install MariaDB on RHEL 9Titima OngkantongShutterstock

How to install MariaDB on RHEL 9

MariaDB and RHEL 9 create a solid foundation for database-driven applications. MariaDB delivers fast, flexible data processing, while RHEL 9 offers a stable environment that’s easy to maintain. Installation and setup are straightforward, even for users with limited experience in…

Read more
Image: How to install MariaDB on Ubuntu 24.04Titima OngkantongShutterstock

How to install MariaDB on Ubuntu 24.04

On Ubuntu 24.04 you can install MariaDB directly through the package manager, then secure access and start the service. MariaDB processes data reliably and efficiently, supports transactions and allows multiple user accounts with clearly defined rights. Ubuntu 24.04 provides a…

Read more
Image: How to use MariaDB UPDATE to update entries in a tableTitima OngkantongShutterstock

How to use MariaDB UPDATE to update entries in a table

MariaDB UPDATE is a powerful SQL command that lets you precisely modify existing data in a table. You can adjust individual fields, edit multiple rows at once or update values based on specific conditions. This command is essential for maintaining data accuracy and allows you to…

Read more
Image: How to install MariaDB via KubernetesTitima OngkantongShutterstock

How to install MariaDB via Kubernetes

Deploying MariaDB on Kubernetes offers many advantages. You can easily start, stop and scale the database. With StatefulSets and PersistentVolumes, your database remains stable even during restarts. Integration via an internal service allows secure access to MariaDB for other…

Read more