Skip to content

Instantly share code, notes, and snippets.

@Maykonn
Forked from fernandojunior/gist:0c1bcf595c16a059fc5d
Last active January 23, 2018 12:18
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 Maykonn/9f135e83ab27b1c9e4fc to your computer and use it in GitHub Desktop.
Save Maykonn/9f135e83ab27b1c9e4fc to your computer and use it in GitHub Desktop.
Install mysql and/or workbench 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