mariadbHow to install Mariadb on Debian?
- Install Mariadb on Debian 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 use variables in Mariadb?
- How to list users in Mariadb?
- Mariadb procedure example
- How to get current year in Mariadb?
- How to get yesterday's date in Mariadb?
- How to change wait_timeout in Mariadb?
- How to use XA transactions in Mariadb?
- How to use xtrabackup in Mariadb?
See more codes...