Tek Eye Logo

Tek Eye

Setup CentOS Server for Web Hosting with DVD ISO

CentOS is a popular GNU/Linux Operating System (OS) for server and desktop computers. This is because it is derived from Red Hat Linux which is used in many large organisations. This article is a tutorial on setting up a CentOS server for web hosting using the DVD version of the CentOS ISO download. For the minimal ISO download see the article Install Apache on CentOS to Configure VPS Test System. This tutorial is suitable for a virtual private server (VPS), physical server or virtual machine (VM). Here a VirtualBox VM is used and steps are similar to a VPS or real server install. A VM is useful for testing for a live configuration, allowing for changes to be verified before live deployment.

CentOS Logo

Download the CentOS DVD ISO

This tutorial uses the CentOS 7 DVD ISO download. CentOS 7 is a 64-bit OS and must be installed on a 64-bit machine (or a 64-bit VM on a 64-bit machine). On the Download CentOS page select the DVD ISO button. Then choose a mirror. The list has only x86_64 ISO because CentOS 7 is 64-bit only, for 32-bit installs use CentOS 6 and the procedure will differ.

If not setting up a VirtualBox VM to run CentOS 7 then skip to the start installation section.

Creating a VM in VirtualBox

VirtualBox is a free program for creating VMs on a variety of OSs and thus great for a setting up test environments, trying and learning new software. This turorial assumes VirtualBox is loaded and running. If not see the article Virtualization Software for Windows. Create a new VM using the New option:

Create a new VM in VirtualBox.

Using the VirtualBox wizard configure the VM's properties, first the name:

Set the VM's name.

The type and version fields should be set to Linux and Red Hat (64-bit), remember this will only work on a 64-bit computer. Set the memory to 1024MB (1G) as a minimum. Memory is taken from the machine the VM is running on, therefore a machine with plenty of memory is recommended:

Set the VM's memory size.

Select the creation of a hard disk for a new VM:

Create VM's hard disk.

Use the default VDI format for the hard disk unless the created image will be used by other VM programs:

Select VDI VM hard disk.

A dynamically allocated hard disk saves on storage space on the real computer:

Select dynamically allocated VM hard disk.

A minimum of 10 GB is recommended for the hard disk, bigger if testing websites with lots of data:

Set VM's hard disk size.

Once the VM is created attached the ISO DVD as a virtual CD. Use the Settings option for the VM:

VM Settings

Select storage and browse to the ISO file download via the small CD icon:

VM DVD ISO Setting

With the ISO selected close the settings and Start the VM. The VM will boot and start the installation:

Start VM.

Start the CentOS 7 Installer

When the installer starts select Install CentOS 7 and press return, no need to test the media for a new VM:

Install CentOS on VM.

When use a VM the PCs mouse pointer may be captured by the VM. To release the mousepointer for a VirtualBox VM press the right control key (as indicated in the VM's bottom status bar).

Select CentOS Language

Follow the installation instructions, select language:

Confirm CentOS Installation Destination.

The installation destination needs to be confirmed. Select Installation Destination:

Select Done to confirm CentOS install destination.

Select the disk for the CentOS 7 installation. For the VM this is the VBOX HARDISK so just select Done to confirm. Next use the Network and Host Name option to enable the network (scroll down if it is not visible):

Set CentOS Network and Hostname

Set the Ethernet to ON and select Done:

Select CentOS Basic Web Server Software

Use the Software Selection option to choose Basic Web Server, selecting any other required packages, e.g. PHP Support, select Done when the required packages have been checked:

Select Begin Installation.

Select Begin Installation, while the system is being copied to the hard disk set up the Root Password:

Set root password in user settings.

Choose a strong password and press Done. Use Finish Configuration to complete the CentOS installation phase and select reboot. CentOS is now ready for login.

Open Port 80 on CentOS 7 Using the Firewall Daemon

CentOS 7 uses firewalld to control port access. The firewalld process is a "dynamic firewall daemon", i.e. it allows changes to be made without affecting the currently running processes. The firewalld rules are stored in zones. The default zone on installation is public. To allow TCP traffic on port 80 in CentOS 7 enter this firewalld command:

[root@testserver ~]# firewall-cmd --zone=public --add-port=80/tcp --permanent

Then reload the firewalld rules:

[root@testserver ~]# firewall-cmd --reload

For more detailed information on the Firewall Daemon see Using Firewalls at Red Hat. Now start Apache:

[root@testserver ~]# apachectl start

The command service httpd start will also start httpd. If the server is rebooted then Apache will need restarting. To automatically have Apache restart on reboot use the chkconfig utility (CentOS 6) or systemctl (CentOS 7). CentOS 7 command to enable httpd on boot:

[root@testserver ~]# systemctl enable httpd.service

Configure and start Apache in CentOS 7.

Apache is now running and ready to server web pages. For the VirtualBox VM Network Address Translation (NAT) can be used to test on the local machine.

Port Forwarding for Local VM Testing

For testing the CentOS 7 web hosting VM on the local machine Port Forwarding can be used. This allows a web request on the real machine to be forwarded to a default port on the VM. First configure a port forwarding rule for the VM. Select the VM's Settings and then Network;

Configure VM Port Forwarding for Apache

Select Port Forwarding, us the plus (+) icon to add a new rule. Give the rule a name, here httpd was used. This example will forward port 8000 on the PC, i.e. the _HostPort, to the standard port 80 for web serving on the VM, the Guest Port:

Configure Set Port NAT

Close the dilogs using the OK buttons and use the PC's web browser to check that Apache is running on the VM. Enter the address localhost:8000:

Apache running on CentOS 7.

Apache is ready to server web content. For simple websites the ↓markdown↓ Content Management System (CMS) is a great way to server web pages.

See Also

Author:  Published:  Updated:  

ShareSubmit to TwitterSubmit to FacebookSubmit to LinkedInSubmit to redditPrint Page

Do you have a question or comment about this article?

(Alternatively, use the email address at the bottom of the web page.)

 This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

markdown CMS Small Logo Icon ↓markdown↓ CMS is fast and simple. Build websites quickly and publish easily. For beginner to expert.


Articles on:

Android Programming and Android Practice Projects, HTML, VPS, Computing, IT, Computer History, ↓markdown↓ CMS, C# Programming, Using Windows for Programming


Free Android Projects and Samples:

Android Examples, Android List Examples, Android UI Examples



Tek Eye Published Projects