Last active
September 25, 2015 13:49
-
-
Save fernandojunior/0c1bcf595c16a059fc5d to your computer and use it in GitHub Desktop.
Install mysql 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