安装APACHE到CentOS(YUM)

Posted NetworkRen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装APACHE到CentOS(YUM)相关的知识,希望对你有一定的参考价值。

运行环境

系统版本:CentOS Linux release 7.3.1611 (Core)
软件版本:httpd-2.4.6
硬件要求:无

安装过程

1、安装YUM-EPEL源

HTTP-Tools软件包由YUM-EPEL源提供。

[root@localhost ~]# yum -y install epel-release.noarch

2、安装HTTPD

[root@locahost ~]# yum -y install httpd

3、编辑配置文件

[root@locahost ~]# vi  /etc/httpd/conf/httpd.conf
ServerRoot "/etc/httpd"
# 服务器工作根目录
Listen 80
# 监听端口				
User apache
# 运行用户
Group apache
# 运行用户组
ServerAdmin root@localhost
# 设置邮箱地址,当用户访问WEB时显示错误,则会在最底部显示一个用于反馈错误的邮箱地址
ServerName www.example.com:80
# 服务器绑定域名和端口
DocumentRoot "/var/www/html"
# 用于发布WEB页面的根目录
<IfModule dir_module>
    DirectoryIndex index.html
# 索引首页文件,当用户访问地址时自动索引呈现该WEB页面文件
</IfModule>
ErrorLog "logs/error_log"
# 记录错误信息到该日志文件中
LogLevel warn
# 记录的日志级别,警告

4、将要发布的WEB页面放置到WEB根目录

[root@locahost ~]# vi index.html
hello world!

5、开启HTTP服务

[root@locahost ~]# systemctl start httpd

6、使用浏览器访问WEB

在浏览器输入:http://Server_IP

以上是关于安装APACHE到CentOS(YUM)的主要内容,如果未能解决你的问题,请参考以下文章

CentOS上使用yum安装Apache

CentOS环境下yum安装LAMP(Linux+Apache+Mysql+php)

Centos下 yum方式安装LAMP

在CentOS 6上安装Apache和PHP

CentOS yum 命令出现 [Errno 14] curl#6 - &quot;Couldn&#39;t resolve host ...&quot; 的解决方法(代码片段

CentOS6编译安装Apache