How to Set Up Virtual Host in Ubuntu 14.04

Wednesday, October 22, 2014     govindkewat.com     30 Comments

How to Set Up Virtual Host in Ubuntu 14.04

Today I came up with new topic that is How to Set Up Virtual Host in Ubuntu. About Virtual Host Virtual host is used to set many hosts on the same IP address. Their is no limit on the number to hosts to be added in Virtual Host. Using this we can display different information to user depends...

How to enable mod_rewrite in Ubuntu 14.04 and 12.04 LTS

Thursday, September 18, 2014     govindkewat.com     0 Comments

How to enable mod_rewrite in Ubuntu 14.04 and 12.04 LTS

Here I am back to guide you how to enable mod_rewrite in ubuntu 14.04 & 12.04 LTS. A little note this is the basic steps to enable mod_rewrite but not the best way. Best way is to setup virtual host first and make changes in that config. Read my previous blog to learn How to install & configure...

How to Install PHP in Ubuntu

Saturday, September 06, 2014     govindkewat.com     87 Comments

How to Install PHP in Ubuntu

Hello readers, Welcome back to my blog. Today we will learn how to install PHP in Ubuntu. PHP is open source server side scripting language using worldwide in many web application like facebook, wordpress, etc. PHP is an acronym for "PHP Hypertext Preprocessor". Install PHP in ubuntu Open terminal to run below command.   sudo apt-get install php5...

How To Install MongoDB and UMongo on Ubuntu

Friday, August 08, 2014     govindkewat.com     25 Comments

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...

How to upgrade skype in linux

Sunday, August 03, 2014     govindkewat.com     46 Comments

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...

How to install MySQL and phpMyAdmin in ubuntu

Thursday, July 31, 2014     govindkewat.com     25 Comments

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...

How to install and configure Apache in Ubuntu

Wednesday, July 30, 2014     govindkewat.com     2 Comments

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...