Skip to content

Instantly share code, notes, and snippets.

@fernandojunior
Last active September 25, 2015 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fernandojunior/0c1bcf595c16a059fc5d to your computer and use it in GitHub Desktop.
Save fernandojunior/0c1bcf595c16a059fc5d to your computer and use it in GitHub Desktop.
Install mysql on ubuntu
# Install mysql server 5.6 on Ubuntu
apt-get install mysql-server-5.6
# Login into MySQL Server
mysql -uroot -p
# restart mysql server
sudo service mysql start|restart|stop|status
# http://sharadchhetri.com/2014/05/07/install-mysql-server-5-6-ubuntu-14-04-lts-trusty-tahr/
# MySQL Workbench
wget http://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community-6.3.4-1ubu1404-amd64.deb
sudo dpkg -i mysql-workbench-community-6.3.4-1ubu1404-amd64.deb
sudo apt-get install -f
sudo dpkg -i mysql-workbench-community-6.3.4-1ubu1404-amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment