Skip to content

Instantly share code, notes, and snippets.

@cerealskill
Created December 19, 2018 19:09
Show Gist options
  • Select an option

  • Save cerealskill/4464517089814a1dcc1d5db537cec51e to your computer and use it in GitHub Desktop.

Select an option

Save cerealskill/4464517089814a1dcc1d5db537cec51e to your computer and use it in GitHub Desktop.
Deploy MariaDB on CentOS 7.4
#!/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