So here we go....
Install MySQL Server 5.1
- Check for existing mysql installations.
- sudo apt-get install mysql-server
Enter root password and click OK.
Retype root password and click OK. - By now MySQL should be running. Test it using the command
sudo netstat -tap | grep mysql - In case mysql is not started, you can restart it using below command
sudo service mysql restart
Install MySQL Workbench 5.2.39
You can install workbench in 2 ways. One is by using sudo apt-get and other is by downloading .DEB file from mysql.com, here is the link. In the above step we have seen installing using sudo apt-get, lets try using GUI installer this time.
GUI installation using .DEB file
- Download the .deb file from mysql site.
- Double click the .deb file to launch installer
- Click Install
- Installation complete
- Test it once
For those who are interested in sudo apt-get, use the below commands
- sudo add-apt-repository ppa:olivier-berten/misc
- sudo apt-get update
- sudo apt-get install mysql-workbench-gpl
Read more on Ubuntu site about installing MySQL Server and MySQL Workbench.
No comments:
Post a Comment