安装APACHE到CentOS(YUM)
2021-04-14 07:27
标签:htm 运行 mct web ace pre 版本 errorlog start 系统版本:CentOS Linux release 7.3.1611 (Core) HTTP-Tools软件包由YUM-EPEL源提供。 安装APACHE到CentOS(YUM) 标签:htm 运行 mct web ace pre 版本 errorlog start 原文地址:https://www.cnblogs.com/network-ren/p/12376626.html运行环境
软件版本:httpd-2.4.6
硬件要求:无安装过程
1、安装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页面的根目录
4、将要发布的WEB页面放置到WEB根目录
[root@locahost ~]# vi index.html
hello world!
5、开启HTTP服务
[root@locahost ~]# systemctl start httpd
6、使用浏览器访问WEB
在浏览器输入:http://Server_IP
上一篇:发ajax响应json格式数据
下一篇:这几种响应式网站有什么区别
文章标题:安装APACHE到CentOS(YUM)
文章链接:http://soscw.com/index.php/essay/75563.html