How To Install Apache Server Source Package On Linux Server?
0 comments 12/24/2010 10:12:00 AM Posted by Surendra Kumar AnneLabels: Advanced Servers, DNS Servers
How To Install Apache Server On Ubuntu Machine?
0 comments 12/22/2010 09:30:00 PM Posted by Surendra Kumar AnneLabels: Advanced Servers, DNS Servers, Ubuntu
How to install an Apache Server on ubuntu machine(A debian system)?
Step1 : Check if the package is installed or not
#dpkg -l | grep apache
Step2 : Install the package if you did not get any output
#apt-get install apache*
Step3 : Now start the apache service
#service apache2 restart
#chkconfig apache2 on
Step5 : Check if the web server is running or not by accessing local host
#elinks localhost
Or
Here is the screen shot showing the test web page when apache is installed
Apache Server Installation On Redhat Linux
0 comments 12/19/2010 06:51:00 PM Posted by Surendra Kumar AnneLabels: Advanced Servers, Apache Server, DNS Servers
How we can install Apache web server on Redhat linux?
Ans : The simplest way to install Apache on redhat machine is to use yum command.
Follow below steps :
To install and check if the web server is running with default test page.
Step1: Check if the package is installed or not
#rpm -qa | grep httpd
Step2 : Install the package if you did not get any output
#yum install httpd
Step3 : Now start the apache service
#service httpd restart
Step4 : On the service at booting time
#chkconfig httpd on
Step5 : Check if the web server is running or not by accessing local host
#elinks localhost
or
Access localhost from browser
When you access the server through browser red-hat Linux will present you with a test page as shown below