mariadbHow to install Mariadb on Ubuntu?
- Install Mariadb on Ubuntu using the following command:
sudo apt-get install mariadb-server
- After the installation is complete, run the following command to secure the installation:
sudo mysql_secure_installation
- You will be prompted to enter a password for the root user. Enter a secure password and press enter.
- You will be asked a series of questions. Answer them according to your preferences.
- Finally, run the following command to start the Mariadb service:
sudo systemctl start mariadb
Helpful links
More of Mariadb
- What type to use for a year in Mariadb?
- How to work with XML in Mariadb?
- How to list users in Mariadb?
- Mariadb procedure example
- How to install Mariadb on Arch linux?
- How to use XA transactions in Mariadb?
- How to use xtrabackup in Mariadb?
- How to change wait_timeout in Mariadb?
- Mariadb fulltext search example
- How to use window functions in Mariadb?
See more codes...