How To Install MongoDB and UMongo on Ubuntu


MongoDB is a document database that provides high performance, high availability, and easy scalability. Due to its features it used in many applications.
This article provide you steps to install MongoDB & UMongo in ubuntu.


Install MongoDB in Ubuntu

1. Open terminal. Use shortcut ctrl+alt+t.
2. sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
3. echo "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen" | tee -a /etc/apt/sources.list.d/10gen.list
4. sudo apt-get -y update
5. sudo apt-get -y install mongodb-10gen
6. Exit



Congrats! You have installed MongoDB successfully. In order to start, stop or restart MongoDB use thie below commands.

sudo service mongodb start            // to start MongoDB
sudo service mongodb stop            //  to stop MongoDB
sudo service mongodb restart       // to restart MongoDB


Install UMongo in Ubuntu

1. Click Here to Download UMongo Package.
2. Now go to Download directory & unzip the package.
3. Now open terminal & go to ' Download/umongo-linux-all_1-6-2 ' directory.
4. run ' bash launch-umongo.sh '.


It's done. Hurrah!! UMongo installed successfully.


Please leave your comment below if you faced any issue.



How to upgrade skype in linux


The stable version on Skype for linux is now available(Here) you can download it from Ubuntu Software Center.

They improve their look & chat experience also make file transfer more reliable.

This is the Most Important update so older version of skype will stop working.
Check here for more info. In older version you will not be able to login.

If you have older version of skype you just need to upgrade it into 4.3 veresion.
So here are the steps to upgrade it.

How to upgrade skype to 4.3 version.

1. Open terminal. Use ctrl+alt+t.
2. type " sudo apt-get upgrade skype ".
3. Exit






That's it your skype will be upgraded to version 4.3

Enjoy the new version of skype.

Left your comment below if you need any help.



How to install MySQL and phpMyAdmin in ubuntu


MySQL is a freely available open source Relational Database Management System (RDBMS) that uses Structured Query Language (SQL).  

phpMyAdmin is a free and open source tool written in PHP intended to handle the administration of MySQL with the use of a web browser.

Installing them into ubuntu is very easy.

Install MySQL

Steps:
1. Open terminal. Use ctrl+alt+t.
2. Type " sudo apt-get install mysql-server mysql-client " and hit enter.
3. Type username & password when ask to enter.
4. Type " exit " and hit enter.



Congrats! It's done. If you want to check it type " mysql " in terminal and hit enter. To exit from it type " exit " and hit enter.



Install phpMyAdmin

Steps:
1. Open terminal. Use ctrl+alt+t.
2. sudo apt-get install phpmyadmin
3. exit


You have installed phpMyAdmin successfully.
Now open http://localhost/phpmyadmin in your browser. You will see phpMyAdmin.


Leave your comment if you face any issue.



How to install and configure Apache in Ubuntu



Install Apache

Installing apache in Ubuntu is very easy.
Here are the steps.
1. Open terminal. Use ctrl+Alt+t.
2. sudo apt-get install apache2
3. exit

Congrats! You have installed apache successfully.
Now open http://localhost in your browser. You will see "It Works!".
Configure Apache
If you want to start,stop & restart apache use this commands.
1. to start " sudo service apache2 start ".
2. To stop " sudo service apache2 stop ".
3. To restart " sudo service apache2 restart ".
 Please comment below if you face any issue.