Java教程

通过yum方式安装httpd

本文主要是介绍通过yum方式安装httpd,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.  yum -y install httpd

 

2.  编辑配置文件:
vi /etc/httpd/conf/httpd.conf

修改80主机的根目录为:  /home/repo/yum/centos-release  

同时开启目录浏览:

 

DocumentRoot "/home/repo/yum/centos-release"

<Directory "/home/repo/yum/centos-release">
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
AllowOverride None
Require all granted
IndexOptions Charset=UTF-8
IndexOptions NameWidth=*
</Directory>

 

3.  启动服务:   service httpd start

      service firewalld stop # 停止防火墙
      systemctl disable firewalld  # 禁用防火墙

    尝试通过 http://ip地址/  访问。 

 

这篇关于通过yum方式安装httpd的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!