第四阶段 10_Linux Apache安装与配置
Posted 白泽java
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第四阶段 10_Linux Apache安装与配置相关的知识,希望对你有一定的参考价值。
Apache 静态网页
1.安装
yum install httpd -y
2.配置文件
cd /etc/httpd/conf
vi httpd.conf
httpd.conf文件个别行讲解
var email 查看邮件
ServerName www.example.com:80去掉注释 否则会看见类似报错的信息
DocumentRoot /var/www/html 静态网页存放位置
DirectoryIndex 默认打开的首页
Loglevel warn 日志级别
LogFmart 日志格式
Alias 虚拟名
AddType 添加模块
virutal hosting 虚拟主机 (01.IP 02.域名 03.端口)
service httpd start
service iptables status关闭防火墙
查看selinux 修改selinux值
vi /etc/selinux/config
SELINUX=disabled
Apache脚本安装并设置
vi myhttp.sh
#!/bin/bash
yum install httpd -y
rpm -qa|grep httpd && echo"httpd has been created"
cd /etc/httpd/conf
mv httpd.conf httpd.conf.bak
awk ‘/serverName www.example/{print "ServerName www.example.com:80";netxt}{print}‘
rm -f httpd.comf.bak
server httpd restart
chkconfig httpd on
echo "test html page"> /var/www/html/index.html
echo "Now you can interview the page by brower"
以上是关于第四阶段 10_Linux Apache安装与配置的主要内容,如果未能解决你的问题,请参考以下文章