1. 程式人生 > >第四階段 10_Linux Apache安裝與配置

第四階段 10_Linux Apache安裝與配置

add linux status root ogl tab 階段 res com

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安裝與配置