Skip to content

Instantly share code, notes, and snippets.

@abrahamfast
Created September 26, 2016 10:10
Show Gist options
  • Save abrahamfast/3f411519da8c8c3e1afebaa211b2c918 to your computer and use it in GitHub Desktop.
Save abrahamfast/3f411519da8c8c3e1afebaa211b2c918 to your computer and use it in GitHub Desktop.
install mysql
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