Skip to content

Instantly share code, notes, and snippets.

View MasterLuke117's full-sized avatar

MasterLuke117

View GitHub Profile
@MasterLuke117
MasterLuke117 / setup-mysql.sh
Created February 10, 2019 04:04 — forked from sheikhwaqas/setup-mysql.sh
Install MySQL Server on Ubuntu (Non-Interactive Installation)
# Download and Install the Latest Updates for the OS
apt-get update && apt-get upgrade -y
# Set the Server Timezone to CST
echo "America/Chicago" > /etc/timezone
dpkg-reconfigure -f noninteractive tzdata
# Enable Ubuntu Firewall and allow SSH & MySQL Ports
ufw enable
ufw allow 22