Apache Tomcat

Posted by: Shailesh Posted on: August 30, 2011 Comments: 0

Apache Tomcat (or Jakarta Tomcat or simply Tomcat) is an open source servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Oracle Corporation, and provides a “pure Java” HTTP web server environment for Java code to run. Tomcat should not be confused with the Apache web server. Tomcat is an application server from the Apache Software Foundation that…

MySQL Database Installation and Configuration

Posted by: Shailesh Posted on: August 29, 2011 Comments: 0

We can do installation of MySQL two ways: a) Install MySQL package using RHN b) Install MySQL rpm from CD/DVD Type the following command as root user: # yum install mysql-server mysql     (This command for Fedora core and Cent OS Linux) Type the following command as root user: # up2date mysql-server mysql           (If the package is not updated) Start MySQL Service To start mysql…

Domain Name System (DNS) Server

Posted by: Shailesh Posted on: August 27, 2011 Comments: 0

DNS – Configuration Port No- 53 Bind is responsible for DNS services. If we want to install Bind from Internet than we need to use below command. #yum install bind bind-chroot caching-nameserver bind-utils Or From cd/dvd cd /media/CentOS_5.4_Final/CentOS/ ..(if the OS is CentOS..otherwise search in RPM in that OS CD) #rpm -ivh bind* #rpm -ivh caching-nameserver* #cp /etc/named.rfc1912.zones /etc/named.conf cp /etc/named.caching-nameserver.conf /etc/named.conf vim /etc/named.conf // named.rfc1914.zones: // // Provided by…

C & C++ On Unix

Posted by: Shailesh Posted on: August 24, 2011 Comments: 0

Till a few years back, it was really difficult to obtain a free version of a compiler to run on ones machine to learn C or C++. And one had to resort to using a commercial compiler either by paying money and buying a licence or using a pirated copy of the same. Couple of years back, Borland C was considered to be the best compiler in the market for…