(01)Install MySQL Server
Linux
1# Ubuntu / Debian2sudo apt-get update3sudo apt-get install -y mysql-server4sudo systemctl enable mysql5sudo mysql_secure_installation6 7# RHEL / Fedora8sudo dnf install -y mysql-server9sudo systemctl start mysqld