Linux installation apache server configuration process

Linux installation apache server configuration process

Prepare the bags

Install

Check if Apache is already installed

rpm -qa |grep httpd

Uninstall Apache

rpm -e --nodeps httpd

(-nodeps means ignoring the dependencies of the software)

Create a folder to store rpm packages

cd /

mkdir rpm_dir

Unzip the package

tar -zxvf httpd-2.4.51.tar.gz

tar -zxvf apr-1.7.0.tar.gz

tar -zxvf apr-util-1.6.1.tar.gz

Move Apache's two dependent files apr and apr-util to its srclib folder (note that the folder cannot have a version number, otherwise the system will not be able to find these two software)

mv /rpm_dir/apr-1.7.0 /rpm_dir/httpd-2.4.51/srclib/apr

mv /rpm_dir/apr-util-1.6.1 /rpm_dir/httpd-2.4.51/srclib/apr-util

pcre regular expression library, expat development library for parsing XML files

rpm -ivh pcre-devel-8.32-17.el7.x86_64.rpm --nodeps

rpm -ivh expat-devel-2.1.0-12.el7.x86_64.rpm --nodeps

Switch to the apache decompression directory and compile the installation package

cd httpd-2.4.51

./configure --prefix=/usr/local/apache --with-included-apr

Install Apache

make && make install

Switch to the path where apache is installed and modify the apache configuration

cd /usr/local/apache

vim conf/httpd.conf

Modify the port number:

Modify the root path for accessing the homepage:

Start Apache

You need to first link the startup program to the system startup directory and name it httpd

cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd

Register the apache service and add the following content to the beginning of the file

vim /etc/rc.d/init.d/httpd

#!/bin/sh
 
# chkconfig:35 61 61
 
# description:Apache

Configure Apache to start automatically and add Linux service monitoring

chkconfig --add httpd

View List

chkconfig --list

Start, Restart

service httpd stop

service httpd start

This is the end of this article about installing Apache server on Linux. For more relevant content about installing Apache server on Linux, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Steps to build a file server using Apache under Linux
  • How to install Apache service in Linux operating system
  • Detailed explanation of Apache website service configuration based on Linux
  • A brief analysis of the configuration and management of Apache servers under Linux
  • Deployment and configuration of Apache service under Linux

<<:  MySQL index pushdown details

>>:  Detailed introduction to CSS priority knowledge

Recommend

MySQL multi-table join query example explanation

In actual projects, there are relationships betwe...

Tutorial on installing MySQL 5.6 on CentOS 6.5

1. Download the RPM package corresponding to Linu...

Detailed explanation of the working principle and solution of Js modularization

Table of contents 1. Modular concept 2. Modulariz...

Echarts legend component properties and source code

The legend component is a commonly used component...

Vue uses vue-quill-editor rich text editor and uploads pictures to the server

Table of contents 1. Preparation 2. Define the gl...

How to install phabricator using Docker

I am using the Ubuntu 16.04 system here. Installa...

Nginx merges request connections and speeds up website access examples

Preface As one of the best web servers in the wor...

Detailed explanation of Linux host name modification command

Linux change hostname command 1. If you only need...

Mysql implements null value first/last method example

Preface We already know that MySQL uses the SQL S...

The process of installing and configuring nginx in win10

1. Introduction Nginx is a free, open source, hig...

Native JS to achieve draggable login box

This article shares a draggable login box impleme...

The difference between shtml and html

Shtml and asp are similar. In files named shtml, s...