mariadbHow to install Mariadb on Centos?
- Install Mariadb on Centos by running the following command:
sudo yum install mariadb-server mariadb
- Start the Mariadb service by running the following command:
sudo systemctl start mariadb
- Secure the Mariadb installation by running the following command:
sudo mysql_secure_installation
- Test the Mariadb installation by running the following command:
mysql -u root -p
- For more information, please refer to the Mariadb Documentation.
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...