How to Install Httpd on CentOS 5.7

Apache httpd is one of the most popular web servers and has a lot of features that make it very extensible and useful for many different types of websites.This steps has been tested on CentOS 5.7 with direct internet connection.

Simply run this command to install apache httpd service on CentOS 5.7:

    [root@CentOS57 ~]# yum install httpd
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirror.yourconnect.com
     * extras: mirrors.sin1.sg.voxel.net
     * updates: mirror.yourconnect.com
    Setting up Install Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package httpd.i386 0:2.2.3-53.el5.centos.3 set to be updated
    base/filelists                                                              | 2.9 MB     00:25
    extras/filelists_db                                                         | 199 kB     00:03
    updates/filelists_db                                                        | 1.9 MB     00:22
    --> Processing Dependency: /etc/mime.types for package: httpd
    --> Processing Dependency: libapr-1.so.0 for package: httpd
    --> Processing Dependency: libaprutil-1.so.0 for package: httpd
    --> Running transaction check
    ---> Package apr.i386 0:1.2.7-11.el5_6.5 set to be updated
    ---> Package apr-util.i386 0:1.2.7-11.el5_5.2 set to be updated
    --> Processing Dependency: libpq.so.4 for package: apr-util
    ---> Package mailcap.noarch 0:2.1.23-1.fc6 set to be updated
    --> Running transaction check
    ---> Package postgresql-libs.i386 0:8.1.23-1.el5_7.3 set to be updated
    --> Finished Dependency Resolution
    
    Dependencies Resolved
    
    ===================================================================================================
     Package                  Arch            Version                           Repository        Size
    ===================================================================================================
    Installing:
     httpd                    i386            2.2.3-53.el5.centos.3             updates          1.2 M
    Installing for dependencies:
     apr                      i386            1.2.7-11.el5_6.5                  base             124 k
     apr-util                 i386            1.2.7-11.el5_5.2                  base              80 k
     mailcap                  noarch          2.1.23-1.fc6                      base              14 k
     postgresql-libs          i386            8.1.23-1.el5_7.3                  updates          197 k
    
    Transaction Summary
    ===================================================================================================
    Install       5 Package(s)
    Upgrade       0 Package(s)
    
    Total download size: 1.6 M
    Is this ok [y/N]: y
    Downloading Packages:
    (1/5): mailcap-2.1.23-1.fc6.noarch.rpm                                      |  14 kB     00:00
    (2/5): apr-util-1.2.7-11.el5_5.2.i386.rpm                                   |  80 kB     00:00
    (3/5): apr-1.2.7-11.el5_6.5.i386.rpm                                        | 124 kB     00:01
    (4/5): postgresql-libs-8.1.23-1.el5_7.3.i386.rpm                            | 197 kB     00:02
    (5/5): httpd-2.2.3-53.el5.centos.3.i386.rpm                                 | 1.2 MB     00:11
    ---------------------------------------------------------------------------------------------------
    Total                                                               99 kB/s | 1.6 MB     00:16
    Running rpm_check_debug
    Running Transaction Test
    Finished Transaction Test
    Transaction Test Succeeded
    Running Transaction
      Installing     : apr                                                                         1/5
      Installing     : mailcap                                                                     2/5
      Installing     : postgresql-libs                                                             3/5
      Installing     : apr-util                                                                    4/5
      Installing     : httpd                                                                       5/5
    
    Installed:
      httpd.i386 0:2.2.3-53.el5.centos.3
    
    Dependency Installed:
      apr.i386 0:1.2.7-11.el5_6.5                 apr-util.i386 0:1.2.7-11.el5_5.2
      mailcap.noarch 0:2.1.23-1.fc6               postgresql-libs.i386 0:8.1.23-1.el5_7.3
    
    Complete!
    

Set httpd service to auto start at boot:

    [root@CentOS57 ~]# chkconfig httpd on
    

Start and troubleshoot httpd start error:

    [root@CentOS57 ~]# service httpd start
    
    Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
    

Check the server hostname or server fully qualified domain name:

    [root@CentOS57 ~]# hostname
    CentOS57
    

Change the ServerName on line 265 to your hostname above.

    [root@CentOS57 ~]# vi /etc/httpd/conf/httpd.conf
    
      263 # redirections work in a sensible way.
        264 #
        265 ServerName CentOS57:80
        266
        267 #
    

Start the Httpd service using the following command :

    [root@CentOS57 ~]# service httpd start
    Starting httpd:                                            [  OK  ]
    

or

    [root@CentOS57 ~]# /etc/init.d/httpd start
    Starting httpd:                                            [  OK  ]
    

How to Reset the Directory Manager Password on RHEL 7 / CentOS 7
How to Reset the Directory Manager Password on RHEL 7 / CentOS 7

It is best practice to remember passwords, but because too many passwords, sometimes we forget. We are not encouraged to write the password on any paper or share the password...

How to Find Big Files Size on Linux RHEL/CentOS
How to Find Big Files Size on Linux RHEL/CentOS

As the linux administrator, sometimes we have to identify which files are most take much space in the linux server resulting in low free space. Low disk space can also...

Why Linux users should worry about malware and what they can do about it
Why Linux users should worry about malware and what they can do about it

Don’t drop your guard just because you’re running Linux. Preventing the spread of malware and/or dealing with the consequences of infection are a fact of life when using computers. If...

How to Reset Forgotten Root Password on Linux RHEL 7 / CentOS 7
How to Reset Forgotten Root Password on Linux RHEL 7 / CentOS 7

This short howto will explain the steps to reset a lost root password or to reset a forgotten root password on Linux RHEL 7 or CentOS 7. Basically, we will...

How to Update CentOS or Upgrade CentOS to the Latest Version
How to Update CentOS or Upgrade CentOS to the Latest Version

Recently, the latest version of CentOS 7.3 was released. All users of CentOS 7.0, 7.1 and 7.2 can upgrade their system to the most recent. This quick guide will explain...

How to Change your WordPress Username, Nickname and Display Name in MySQL
How to Change your WordPress Username, Nickname and Display Name in MySQL

After you create an account log in WordPress, you may want to change your WordPress username, as appropriate or due to security reason. However, you can not do this from...

How to Enable SSH Root Login on Ubuntu 16.04
How to Enable SSH Root Login on Ubuntu 16.04

As what we wrote in the previous article on how to allow SSH root on Ubuntu 14.04, after installing a fresh new copy of Ubuntu 16.04 LTS, we find that...

How to Change UUID of Linux Partition on CentOS 7
How to Change UUID of Linux Partition on CentOS 7

UUID (Universally Unique IDentifier) should be unique and it is used to identify storage devices on a linux system. If you cloned a virtual machine from vCenter, the metadata containing...

Leave a Reply

Your email address will not be published. Required fields are marked *