Linux安装apache

Linux安装apache

一、安装apache服务器,并配置访问端口7777

安装apache

yum install httpd -y

img

安装apache手册

yum install httpd-manual

将apache服务添加到 开机自启中

systemctl start httpd
systemctl enable httpd
//设置永久允许httpd
firewall-cmd --permanent --add-service=http
//防火墙重新加载策略
firewall-cmd --reload

在这里插入图片描述

出现这种情况为防火墙未开启

//开启防火墙
systemctl start firewalld.service
//设置开机启动
systemctl enable firewalld.service
//查看Firewalld防火墙状态:
systemctl status firewalld

进入默认发布的目录,并编辑默认发布文件内容

vim /var/www/html/index.html
<body bgcolor="red">
    <h1>
    hell world!
    </h1>
</body>

将访问端口设为7777

进入主配置目录

cd /etc/httpd/conf

修改主配置文件端口为7777

vim httpd.conf

重启httpd服务

systemctl restart httpd

如果不行则将selinux临时关闭

setenforce 0

防火墙添加7777端口号

firewall-cmd --permanent --add-port=7777/tcp

重新加载防火墙

firewall-cmd --reload

在这里插入图片描述

二、添加新的默认页面sorry.html,在默认主页不能访问的情况下显示“很抱歉…该网站正在维护中请您在4月1号之后再访问,感谢您的支持。”

1.进入主配置目录

cd /etc/httpd/conf

编辑主配置文件,将sorry.html设为新的默认页面

vi httpd.conf
<IfModule dir_module>

    DirectoryIndex index.html sorry.html

</IfModule>

进入默认发布目录添加sorry.html页面

cd /var/www/html

vim sorry.html
<body bgcolor="red">
    <h1>
    很抱歉...该网站正在维护中……请您在4月1号之后再访问,感谢您的支持。
    </h1>
</body>

重启http服务

systemctl restart httpd

在这里插入图片描述

打命令编辑httpd.conf

cd /etc/httpd/conf
Vim httpd.conf
Cd  /var/www/hrml
Vim sorry.html

YDaPIL-1680965743619)]

打命令编辑httpd.conf

cd /etc/httpd/conf
Vim httpd.conf
Cd  /var/www/hrml
Vim sorry.html
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

意点源

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值