Detailed steps to install and uninstall Apache (httpd) service on centos 7

Detailed steps to install and uninstall Apache (httpd) service on centos 7

uninstall

First, confirm whether it has been installed or the system comes with the httpd service, using the following command:

# rpm -qa | grep httpd

or:

# yum list | grep httpd

I have already installed it once, so it will be displayed as follows:

Then I will uninstall my httpd first. First, I need to stop the httpd service. The command is as follows:

# systemctl stop httpd.service

Then you can use the rpm -e or yum -erase command, but the rpm -e command requires you to uninstall the dependent packages first, so I use the yum -erase command to uninstall, the command is as follows:

# yum erase httpd.x86_64

In the middle, you will be asked to confirm, just press y, until Complete! appears, indicating that the uninstallation is complete.

Install

If you want to confirm whether the uninstallation is complete, you can use the list command to list the installed files (the first step of uninstallation). We will not do this here. We will directly list the httpd items in the yum repository with the following command:

# yum list | grep httpd

Then, after seeing the available items, we enter the following command to install it:

# yum install httpd

Enter 'y' in the middle and the installation is complete.

Then we check the running status of httpd through the following command:

# systemctl status httpd.service

If httpd is not started, we can start the service with the following command:

# systemctl start httpd.service

The default www directory is under /var/www/html/, so we write an html file to see what happens. Enter the following command to create a file containing the hello world string:

# echo 'hello world' > /var/www/html/index.html

Then, we use curl to access the local:

# curl 127.0.0.1

Already in normal service!

<<:  Understanding MySQL precompilation in one article

>>:  A brief analysis of React's understanding of state

Recommend

Detailed explanation of non-parent-child component value transfer in Vue3

Table of contents App.vue sub1.vue sub2.vue Summa...

Detailed explanation of JS array methods

Table of contents 1. The original array will be m...

js learning notes: class, super and extends keywords

Table of contents Preface 1. Create objects befor...

Vue realizes adding watermark to uploaded pictures (upgraded version)

The vue project implements an upgraded version of...

Examples and comparison of 3 methods for deduplication of JS object arrays

Table of contents 1. Comparison of data before an...

Implementation of Webpack3+React16 code splitting

Project Background Recently, there is a project w...

MySQL cross-table query and cross-table update

Friends who have some basic knowledge of SQL must...

Use standard dl, dt, dd tags to discard table lists

Now, more and more front-end developers are starti...

How to set and get the number of Mysql connections

Get the number of connections --- Get the maximum...

The difference between MySQL database stored procedures and transactions

Transactions ensure the atomicity of multiple SQL...

How to use mysqldump to backup MySQL data

1. Introduction to mysqldump mysqldump is a logic...

mysql group by grouping multiple fields

In daily development tasks, we often use MYSQL...