Skip to content

Instantly share code, notes, and snippets.

View santiagopuerta's full-sized avatar
😃

Santiago santiagopuerta

😃
View GitHub Profile
@santiagopuerta
santiagopuerta / setup-mysql.sh
Created April 20, 2016 11: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