Home » Archive by category Centos/RHEL (Page 9)

How to enable/disable apache modules in Ubuntu

You can enable or disable any apache module in Ubuntu using a2enmod and a2dismod, Not need to edit configuration file. Run the following command from root user To enable/disable a module: #a2enmod module_name #a2dismod module_name To enable modules #a2enmod expires #a2enmod headers #a2enmod rewrite #a2enmod mod-security #/etc/init.d/apache2 restart...
Continue reading

How to enable server status in Apache

The Mod_Status module permits a server administrator to expose how well the apache server is performing. A HTML page is offered that gives the current server statistics. So to enable server status in apache uncomment the following lines. <Location /server-status> SetHandler server-status Order Deny,Allow Deny from all Allow...
Continue reading

How to Secrete Apache Header Information

Web servers frequently transmit server information by default. It’s include information such as the operating system and version, which web server you are running Apache, Nginx, IIS etc. and in some time web server modules installed. This information is stored in http headers, and sent together with every...
Continue reading

Install nginx 1.6 php5.4 mysql 5.5 on Centos 6

This guide will help you to Install nginx 1.6 php5.4 mysql 5.5 on Centos 6 so read carefully this article for the same. First we need to install nginx 1.6 repository using below command: rpm -Uvh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm Install nginx web-server yum install nginx ## Installing mysql 5.5 First...
Continue reading

How to install python 2.7 on Centos

In order to compile Python first we need to install the development tools and some extra libs. Although these extra libraries are not strictly needed to compile Python but without them Python interpreter will be quite useless. To install python 2.7 on Centos follow the below steps. yum...
Continue reading

Categorized Tag Cloud