How to install mysql on CentOS 7
MariaDB is enhanced version of MySQL. For further information check https://mariadb.org
To install the mariaDB, launch the following commands
Step 1: Install mariaDB
sudo yum install mariadb-server maria
Step 2: Start the mariadb daemon
sudo systemctl start mariadb.service
Step 3: Make the mariadb daemon start automatically on system reboot
sudo systemctl enable mariadb.service
Comments
Post a Comment