Menu

Post image 1
Post image 2
1 / 2
0

Installing MariaDB on Ubuntu 26.04

DEV Community·Sanskriti Harmukh·25 days ago
#Hw8s8vgj
Reading 0:00
15s threshold

MariaDB is a drop-in replacement for MySQL that remains fully open source under the GPL license, available directly from Ubuntu 26.04's default APT repository with no external sources required. This guide covers installation, service configuration, security hardening with mariadb-secure-installation , and basic database operations to confirm a working setup. Install MariaDB MariaDB is available directly in Ubuntu 26.04's default APT repository. 1. Update the APT package index: $ sudo apt update Enter fullscreen mode Exit fullscreen mode 2. Install the MariaDB server package: $ sudo apt install mariadb-server -y Enter fullscreen mode Exit fullscreen mode 3. Verify the installed version: $ mariadb --version Enter fullscreen mode Exit fullscreen mode Manage the MariaDB Service Enable MariaDB as a systemd service so it starts automatically on every boot. 1. Enable and start the service: $ sudo systemctl enable mariadb $ sudo systemctl start mariadb Enter fullscreen mode Exit fullscreen mode 2.…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More