search
HomeOperation and MaintenanceApacheUpgrade apache to the latest version under centos7

Upgrade apache to the latest version under centos7

Step 1: Find the Apache version in the default software repository

In order to find the Apache version in the software repository on Centos, use the command Enter the following command below the line:

yum info httpd

If your centos maintains the default configuration, you are likely to get similar results:

[root@crosp ~]# yum info httpd
Loaded plugins: fastestmirror
epel/x86_64/metalink                                     |  19 kB     00:00
epel                                                     | 4.3 kB     00:00
(1/3): epel/x86_64/group_gz                                | 170 kB   00:00
(2/3): epel/x86_64/primary_db                              | 4.6 MB   00:00
(3/3): epel/x86_64/updateinfo                              | 780 kB   00:00
Loading mirror speeds from cached hostfile
 * base: mirrors.ircam.fr
 * epel: mirrors.ircam.fr
 * extras: centos.mirror.fr.planethoster.net
 * updates: centos.mirror.fr.planethoster.net
Available Packages
Name        : httpd
Arch        : x86_64
Version     : 2.4.6
Release     : 45.el7.centos.4
Size        : 2.7 M
Repo        : updates/7/x86_64
Summary     : Apache HTTP Server
URL         : http://httpd.apache.org/
License     : ASL 2.0
Description : The Apache HTTP Server is a powerful, efficient, and extensible
            : web server.

As you can see from the above output Yes, there is only version 2.4.6 of apache in the default software library.

Note:

Centos uses backward fix security practices to apply new software fixes to earlier versions. Therefore, earlier versions of software in the default repository do not mean that they are more vulnerable. But for me, it’s not an update that meets my needs.

You can use changelog to view version updates:

sudo yum install yum-changelog
yum changelog httpd

Step 2: Install the CodeIT library

The people at CodeIT provided a good Custom library. This repository provides the latest versions of server software (Apache & Nginx).

Before installing the CodeIT library, you need to enable EPEL. EPEL provides the dependencies required by the CodeIT library.

sudo yum install -y epel-release

Finally, let’s install the CodeIT library

cd /etc/yum.repos.d && wget https://repo.codeit.guru/codeit.el`rpm -q --qf "%{VERSION}" $(rpm -q --whatprovides redhat-release)`.repo

Next, we confirm the Apache package version again, you should see output similar to the following

[root@crosp ~]# yum info httpd
Loaded plugins: changelog, fastestmirror
Loading mirror speeds from cached hostfile
 * base: centos.crazyfrogs.org
 * epel: mirror.23media.de
 * extras: mirrors.ircam.fr
 * updates: centos.mirror.fr.planethoster.net
Available Packages
Name        : httpd
Arch        : x86_64
Version     : 2.4.25
Release     : 3.el7.codeit
Size        : 1.4 M
Repo        : CodeIT/x86_64
Summary     : Apache HTTP Server
URL         : http://httpd.apache.org/
License     : ASL 2.0
Description : The Apache HTTP Server is a powerful, efficient, and extensible
            : web server.

Step 3: Install Apache

Now you should have everything you need to install the latest version of apache:

yum install httpd

Once Apache is installed, we can test that apache is functioning properly Working:

[root@crosp ~]# systemctl start httpd

The output should be similar to the picture below:

[root@crosp ~]# curl localhost
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Test Page for the Apache HTTP Server on CentOS</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                ...

Finally, let systemctl set Apache to start automatically at boot:

[root@crosp ~]# systemctl enable httpd

Complete.

Recommended tutorial: apache from entry to proficiency

The above is the detailed content of Upgrade apache to the latest version under centos7. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Apache in Action: Web Servers and Web ApplicationsApache in Action: Web Servers and Web ApplicationsApr 28, 2025 am 12:21 AM

The main functions of ApacheHTTPServer include modular design, virtual host configuration and performance optimization. 1. Modular design implements functions by loading different modules, such as SSL encryption and URL rewriting. 2. Virtual host configuration allows multiple websites to be run on one server. 3. Performance optimization improves performance by adjusting parameters such as ServerLimit and KeepAlive.

Apache's Adaptability: Surviving the Evolving WebApache's Adaptability: Surviving the Evolving WebApr 27, 2025 am 12:01 AM

Apache maintains adaptability and vitality through modular design, compatibility with new technologies, and performance optimization. 1. Modular design allows custom functions such as mod_rewrite for URL rewriting. 2. Compatible with cloud computing and containerization technologies, such as running in Docker. 3. Introduce new modules such as mod_http2 to support the HTTP/2 protocol. 4. Performance optimization is performed through configuration file adjustment and cache activation.

Apache's Features: Why It Remains a Popular ChoiceApache's Features: Why It Remains a Popular ChoiceApr 26, 2025 am 12:16 AM

The reason ApacheHTTPServer remains popular is its modular architecture, virtual hosting support, and high performance and reliability. 1) The modular architecture allows for extended functions through modules, such as mod_rewrite and mod_ssl. 2) The virtual hosting function supports hosting multiple websites on one server. 3) The multi-process model ensures high performance and stability in different environments.

Using Apache: Building and Hosting WebsitesUsing Apache: Building and Hosting WebsitesApr 25, 2025 am 12:07 AM

Apache is an open source web server software that is widely used in website hosting. Installation steps: 1. Install using the command line on Ubuntu; 2. The configuration file is located in /etc/apache2/apache2.conf or /etc/httpd/conf/httpd.conf. Through module extensions, Apache supports static and dynamic content hosting, optimizes performance and security.

Apache: Is It Still Used? A Look at Web Server TrendsApache: Is It Still Used? A Look at Web Server TrendsApr 24, 2025 am 12:17 AM

Apache is still widely used, but its market share has dropped from more than 50% in 2010 to less than 30% in 2023. Its advantage lies in its stability and reliability, which is suitable for enterprise-level applications that require these characteristics; its disadvantage is that multi-process models consume a lot of resources under high concurrency, and Nginx performs better in high concurrency processing.

Apache Web Server: Core Functionality ExplainedApache Web Server: Core Functionality ExplainedApr 23, 2025 am 12:12 AM

The core features of ApacheWebServer include modular design, virtual host configuration, security settings and performance optimization. 1) Modular design enables flexible extensions by loading different modules, such as mod_rewrite for URL rewriting. 2) Virtual host configuration allows multiple websites to be run on one server. 3) Security settings provide SSL/TLS encryption and access control. 4) Performance optimization involves enabling KeepAlive, adjusting MPM configuration, and enabling cache.

Apache's Continuing Importance: Reasons for Its LongevityApache's Continuing Importance: Reasons for Its LongevityApr 22, 2025 am 12:08 AM

Reasons for Apache's continued importance include its diversity, flexibility, strong community support, widespread use and high reliability in enterprise-level applications, and continuous innovation in emerging technologies. Specifically, 1) The Apache project covers multiple fields from web servers to big data processing, providing rich solutions; 2) The global community of the Apache Software Foundation (ASF) provides continuous support and development momentum for the project; 3) Apache shows high stability and scalability in enterprise-level applications such as finance and telecommunications; 4) Apache continues to innovate in emerging technologies such as cloud computing and big data, such as breakthroughs from ApacheFlink and ApacheArrow.

Beyond the Hype: Assessing Apache's Current RoleBeyond the Hype: Assessing Apache's Current RoleApr 21, 2025 am 12:14 AM

Apache remains important in today's technology ecosystem. 1) In the fields of web services and big data processing, ApacheHTTPServer, Kafka and Hadoop are still the first choice. 2) In the future, we need to pay attention to cloud nativeization, performance optimization and ecosystem simplification to maintain competitiveness.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function