Installing and Configuring LAMP Server on RHEL6 for Production Environment

     Many people know from their own experience that it's not easy to install an Apache web server and it gets harder if you want to add MySQL, PHP and Perl.XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, extract and start.The philosophy behind XAMPP is to build an easy to install distribution...

Install & Configure DNS service in RHEL6

         DNS (Domain Name System) is one of the most dependable service in a network. All of us know that the DNS service resolves hostname into ip address and vice versa.  The DNS server translates the domain name into its corresponding ip address. So it makes us easy to remember the domain names instead of its ip address.DNS Server Installation in RHEL6   ...

Integrating RHEL6 with Active Directory

         Hi guys...! In every IT shop you will find two groups so called Windows Team and Linux Team which don't mix just like that. Actually, they don't compete each other, at the same time they don't collaborate either. But as a System Admin our job is to provide a cost-effective IT service to the organization. It is obvious to say that majority of organizations have...

I/O Redirection in Linux

Three types of I/O redirections in Linux1. stdin         <2. stdout       >3. stderr       2>Examples: 1. # date > file1.txt    Redirects the output of date command to the file file1.txt .2. #cal >> file1.txt    Redirects the output of cal command to file1.txt. Note that the out put of cal command will...