安装APACHE到CentOS(YUM)

2021-04-14 07:27

阅读:403

标签:htm   运行   mct   web   ace   pre   版本   errorlog   start   

运行环境

系统版本: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页面的根目录

    DirectoryIndex index.html
# 索引首页文件,当用户访问地址时自动索引呈现该WEB页面文件

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)

标签:htm   运行   mct   web   ace   pre   版本   errorlog   start   

原文地址:https://www.cnblogs.com/network-ren/p/12376626.html


评论


亲,登录后才可以留言!