LinuxMoz

Linux Stuff && Coffee

CentOS Install Apache

| Comments

This guide will explain how to install apache on CentOS Linux.

CentOS install Apache guide

The following command will install apache on CentOS (All versions).

1
yum install httpd

Start Apache on CentOS

You can start Apache on CentOS with:

1
service start httpd

Or…

1
/etc/init.d/httpd start

Restart Apache on CentOS

How to restart Apache on CentOS:

1
service httpd restart

or…

1
/etc/init.d/httpd restart

Comments