Created
June 24, 2016 17:29
-
-
Save vigneshncc/d45412cd67d00d763422d23dc4941fc3 to your computer and use it in GitHub Desktop.
Install MYSQL in Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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