Skip to content

Instantly share code, notes, and snippets.

@vigneshncc
Created June 24, 2016 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vigneshncc/d45412cd67d00d763422d23dc4941fc3 to your computer and use it in GitHub Desktop.
Save vigneshncc/d45412cd67d00d763422d23dc4941fc3 to your computer and use it in GitHub Desktop.
Install MYSQL in Ubuntu
Update your system
===================
sudo apt-get update
Install MySQL
=============
sudo apt-get install mysql-server
Harden MySQL Server
===================
sudo mysql_secure_installation
Use MySQL
=========
mysql -u root -p
//Enter password when prompted.
Source: https://www.linode.com/docs/databases/mysql/install-mysql-on-ubuntu-14-04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment