#!/bin/bash # MySQL 5.7 wget http://repo.mysql.com/mysql-apt-config_0.8.13-1_all.deb sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb sudo apt update sudo apt install -y mysql-server mysql-client sudo apt-mark hold mysql-c* mysql-s* mariadb-* sudo systemctl enable mysql --now # MariaDB sudo apt install mariadb-server sudo mysql_secure_installation sudo apt-mark hold mysql-c* mysql-s* mariadb-* sudo systemctl enable mariadb --now mysql -uroot -ptest