Created
September 26, 2016 10:10
-
-
Save abrahamfast/3f411519da8c8c3e1afebaa211b2c918 to your computer and use it in GitHub Desktop.
install mysql
This file contains hidden or 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
how to install mysql in linux | |
https://community.nitrous.io/docs/mysql | |
```sh | |
mysql --version | |
sudo apt-get update | |
sudo apt-get install mysql-server libapache2-mod-auth-mysql | |
sudo mysql_install_db | |
sudo /usr/bin/mysql_secure_installation | |
mysql -u root -p | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment