Created
December 19, 2018 19:09
-
-
Save cerealskill/4464517089814a1dcc1d5db537cec51e to your computer and use it in GitHub Desktop.
Deploy MariaDB on CentOS 7.4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Deploy Maria DB on CentOS 7.4"; | |
| sudo yum -y install mariadb-server mariadb | |
| systemctl start mariadb | |
| systemctl enable mariadb | |
| systemctl status mariadb | |
| sudo mysql_secure_installation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment