Installing MySQL in Ubuntu 9.10
November 4, 2009 3 Comments
As I begin to import my project into Ubuntu 9.10, I had to install MySQL too. Just at that time I realise, why don’t I publish this instruction for you all. At least, it will help some body. I hope you will be among that somebody.
For Installation and use MySQL you have to give some instruction in terminal:
Step 1:
This will install the latest MySQL-server into your machine.sudo apt-get install mysql-server
Step 2:
Which will start the MySQL server.sudo /etc/init.d/mysql start
Step 3:
This instruction will ask you the MySql server that you have entered during installation.mysql -u root -p
Step 4:
This instruction will create a new database “db_test”create database db_test
Step 5:
which will let you inside the database.use db_test
Now use MySQL Query to work with it n Enjoy.

Recent Comments