linux apache服务器配置,Linux下 Apache服务器配置

Linux下 Apache服务器配置相关包:

httpd-2.2.3-29.e15.i386.rpm                 //主程序包

httpd-devel-2.2.3-29.e15.i386.rpm        //开发程序包

httpd-manual-2.2.3-29.e15.i386.rpm     //手册文档

system-config-httpd-1.3.3.3-1.e15.noarch.rpm   //配置工具

注:安装时会出现依赖包问题,可用YUM安装来解决

启用时需要配置防火墙来放行

开机自动加载:

chkconfig --level 3 httpd on

配置实例:

例1:部门内搭建一台WEB服务器,采用的IP地址和端口为192.168.0.3:80,首页采用index.html文件。管理员E-mail地址为root@bkjia.com,网页的编码类型采用GB2312,所有网站资源都存放在/var/www/html目录下,并将Apache的根目录设置为/etc/httpd目录。

编辑主配置文件httpd.conf

vim /etc/httpd/conf/httpd.conf    //编辑主配置文件

ServerRoot "/etc/httpd"             //设置Apache的主目录

Timeout 120                             //设置请求超时

Listen 80                                //设置监听端口

ServerAdmin root@bkjia.com         //设置管理员邮箱

ServerName 192.168.0.3:80           //设置主机或IP

DocumentRoot "/var/www/html"      //设置Apache文档目录

DirectoryIndexindex.html             //设置主页文件

AddDefaultCharset GB2312            //设置网站编码

编辑主页文件用作测试:

cd /var/www/html

echo "This is web test sample.">>index.html

chmod 705 index.html

重新加载服务:

service httpd restar

例2:假设Apache服务器具有192.168.0.2和19.16.0.3两个地址,然后配置Apache,把多个网站绑定在不同的IP地址上,访问服务器上不同的IP地址,就可以看到不同的网站。

(基于IP)

mkdir /var/www/ip1   /var/www/ip2           //创建两个主目录

编辑httpd.conf文件:

                     //设置虚拟主机的IP

DocumentRoot /var/www/ip1                //设置虚拟主机的主目录

DirectoryIndex index.html                    //设置主页文件

ServerAdmin root@bkjia.com               //设置管理员邮箱

ErrorLog  logs/ip1-error_log                 //设置错误日志的存放位置

CustomLog  logs/ip1-access_log common       //设置访问日志的存放位置

                     //设置相应的IP

DocumentRoot /var/www/ip2

DirectoryIndex index.html

ServerAdmin root@bkjia.com

ErrorLog  logs/ip2-error_log

CustomLog  logs/ip2-access_log common

(基于域名)

mkdir /var/www/bkjia  /var/www/long         //创建两个主目录

编辑httpd.conf文件:

                        //设置虚拟主机的IP

DocumentRoot /var/www/bkjia                //设置虚拟主机的主目录

DirectoryIndex index.html                       //设置主页文件

ServerNamewww.bkjia.com                  //设置虚拟主机完全域名

ServerAdmin root@bkjia.com                  //设置管理员邮箱

ErrorLog  logs/bkjia-error_log                 //设置错误日志的存放位置

CustomLog  logs/bkjia-access_log common     //设置访问日志的存放位置

DocumentRoot/var/www/long

DirectoryIndex index.html

ServerName www.bkjia.com                   //设置虚拟主机完全域名

ServerAdmin root@bkjia.com

ErrorLog  logs/long-error_log

CustomLog  logs/long-access_log common

(基于端口)

mkdir /var/www/port8080   /var/www/port8090      //创建两个主目录

编辑httpd.conf文件:

Listen 8080

Listen 8090

                           //设置相应的端口

DocumentRoot /var/www/port8080                     //设置虚拟主机的主目录

DirectoryIndex index.html                                  //设置主页文件

ServerAdmin root@bkjia.com                             //设置管理员邮箱

ErrorLog  logs/port8080-error_log                     //设置错误日志的存放位置

CustomLog  logs/port8080-access_log common  //设置访问日志的存放位置

                         //设置相应的端口

DocumentRoot /var/www/port8090

DirectoryIndex index.html

ServerAdmin root@bkjia.com

ErrorLog  logs/port8090-error_log

CustomLog  logs/port8090-access_log common

Ubuntu Server 14.04 安装Web服务器(Linux+Apache+MySQL+PHP)

Linux下安装配置PHP环境(Apache2)

Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置

CentOS 5.9下编译安装LAMP(Apache 2.2.44+MySQL 5.6.10+PHP 5.4.12)

RedHat 5.4下Web服务器架构之源码构建LAMP环境及应用PHPWind

Linux下Apache虚拟主机的配置

Apache 的详细介绍:请点这里

Apache 的下载地址:请点这里

本文永久更新链接地址:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值