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