母虚拟机的安装 和 varnish(rhel6.5)

base安装(操作步骤如下):
  ifconfig
  hostname server1
  vi /etc/sysconfig/network
  vi /etc/yum.repos.d/rhel-source.repo    ##配置yum源
  yum repolist     ##yum的更新
  yum install -y vim lftp
  yum install -y openssh-clients
  cd /etc/udev/
  ls
  cd rules.d/
  ls
  rm -fr 70-persistent-net.rules
  ip addr
  ls
  cd/etc/sysconfig/network-scripts/
  ls
  vim ifcfg-eth0
  vim /etc/hosts
  cd /etc/ssh/
  ls
  rm -fr ssh_host_*    ##删除ssh所给的钥匙(如果ssh连接出现问题,就在这删除再次连接)
  ls
  iptables -L
  cd /etc/sysconfig/
  ls
  rm -fr iptables
  ls
  pwd
  chkconfig iptables off   ##关闭火墙
  vim /etc/sysconfig/selinux   ##在文件中将selinux状态改为disabled

vm1(varnish轮询主机)
     yum install -y *

(安装varnish.x86_64 0:3.0.5-1.el6 varnish-libs.x86_64 0:3.0.5-1.el6这两个安装包下载安装varnish )
     cd /etc/varnish/
     vim /etc/sysconfig/varnish (设置varnish默认端口是80VARNISH_LISTEN_PORT=80)
     /etc/init.d/varnish reload
     vim /etc/varnish/default.vcl  ##配置varnish
     /etc/init.d/varnish start
     /etc/init.d/varnish reload

-------------------------------------------------------------------------------------------
###varnish的配置

[[email protected] varnish]# cat default.vcl

###定义多个不同域名站点的后端服务器
backend web1 {
  .host = "172.25.78.2";   ###配置一个后端服务器
  .port = "80";
}
backend web2 {
  .host = "172.25.78.3";
  .port = "80";
}

director lb round-robin {  #把多个后端聚合为一个组,并检测后端健康状况
{.backend = web1;}
{.backend = web2;}
}

#当访问 www.westos.org 域名时从 web1 上取数据,访问 bbs.westos.org 域名时到 web2 取数据,访问其他页面报错。
sub vcl_recv {
if (req.http.host ~ "^(www.)?westos.org") {
set req.http.host = "www.westos.org";
set req.backend = lb;
return (pass);     ##通常为了方便测试,不进行缓存
} elsif (req.http.host ~ "^bbs.westos.org") {
set req.backend = web1;
} else {error 404 "westos cache";
}
}

###查看缓存命中情况
sub vcl_deliver {
if (obj.hits > 0) {
set resp.http.X-Cache = "HIT from westos cache";
}
else {
set resp.http.X-Cache = "MISS from westos cache";
}
return (deliver);
}

###测试缓存命中
[[email protected] ~]# curl -I www.westos.org
HTTP/1.1 200 OK
Server: Apache/2.2.15 (Red Hat)
Last-Modified: Wed, 19 Jul 2017 14:21:56 GMT
ETag: "9f614-20-554ac5ab83cc8"
Content-Type: text/html; charset=UTF-8
Content-Length: 32
Accept-Ranges: bytes
Date: Thu, 20 Jul 2017 03:22:27 GMT
X-Varnish: 1895199082
Age: 0
Via: 1.1 varnish
Connection: keep-alive
X-Cache: MISS from westos cache       #未命中

[[email protected] ~]# curl -I www.westos.org
HTTP/1.1 200 OK
Server: Apache/2.2.15 (Red Hat)
Last-Modified: Wed, 19 Jul 2017 14:21:56 GMT
ETag: "9f614-20-554ac5ab83cc8"
Content-Type: text/html; charset=UTF-8
Content-Length: 32
Accept-Ranges: bytes
Date: Thu, 20 Jul 2017 03:22:29 GMT
X-Varnish: 1895199083 1895199082
Age: 2
Via: 1.1 varnish
Connection: keep-alive
X-Cache: HIT from westos cache    ##命中

----------------------------------------------------------------------------------------------------------------------

### 通过 varnishadm 手动清除缓存
# varnishadm ban.url .*$       #清除所有
# varnishadm ban.url /index.html  #清除 index.html 页面缓存
# varnishadm ban.url /admin/$     #清除 admin 目录缓存

在vm2上(充当web1):

vim /etc/httpd/conf/httpd.conf

NameVirtualHost *:80(打开此端口)
<VirtualHost *:80>
    DocumentRoot /var/www/html
    ServerName server2

</VirtualHost>

<VirtualHost *:80>
    DocumentRoot /www/bbs
    ServerName bbs.westos.org
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot /www/westos
    ServerName www.westos.org
</VirtualHost>

yum install -y httpd
     /etc/init.d/httpd start
     cd /var/www/html/
     ls
     vim index.html
     vim /etc/httpd/conf/httpd.conf
     mkdir /www/bbs -p
     mkdir /www/westos
     cd /www/bbs/
     vim index.html
     cd /www/westos/
     vim index.html
     /etc/init.d/httpd restart
     vim /etc/hosts (给www.westos.org和bbs.westos.org作解析)

vm3(充当web2):

yum install -y httpd
    /etc/init.d/httpd start
    cd /var/www/html/
    vim index.html

在物理机测试:
    vim /etc/hosts  (作解析)
    curl 172.25.78.1
    curl bbs.westos.org
    curl www.westos.org
    curl www.westos.org/index.html

------------------------------------------------------------------------------------------------------------------

###varnish cdn 推送平台####
CDN推送

1.vim /etc/httpd/conf/httpd.conf
因为做varnish时候把监听端口改成了80,所以做cdn推送时候要更改http的监听端口为8080

2.yum install unzip.x86_64 -y

3.unzip bansys.zip -d /var/www/html/ 
解压bansys到html目录下,可以直接网页推送(cd /var/www/html/bansys/ mv * ..  rm -fr bansys/)

4.yum install -y php 
因为cdn里面的文件是使用php编写的,需要下载php编译器(需要安装 php 支持)

5./etc/init.d/varnish start
  /etc/init.d/httpd start

6.vim /var/www/html/config.php(配置文件更改如下)
*****************************************
*<?php
*   $var_group1 = array(
*   ‘host‘ =>array(‘172.25.78.1‘),
*   ‘port‘ => ‘80‘,
*);
*
*//varnish 群组定义
*//对主机列表进行绑定
*$VAR_CLUSTER = array(
*   ‘www.westos.org‘ =>$var_group1,
*);
*
*//varnish 版本//2.x 和 3.x 推送命令不一样
*$VAR_VERSION = "3";
*?>
******************************************

#bansys 有两种工作模式,分别是:telnet 和 http 模式。
#telnet 模式需要关闭 varnish 服务管理端口的验证,注释掉/etc/sysconfig/varnish 文件中的 “ -S ${VARNISH_SECRET_FILE}”这行,重启 varnish 服务即可。
#如果是 http 模式需要对 varnish 做以下设置:

# vim /etc/varnish/default.vcl
acl westos {
        #设置访问控制
    "127.0.0.1";
    "192.168.0.0"/24;
}
sub vcl_recv {
    if (req.request == "BAN"){
        if (!client.ip ~ westos) {
           error 405 "Notallowed.";
    }
    ban("req.url ~ " +req.url);
    error 200 "ban added";
      }
}
# service varnish reload

时间: 2024-12-16 09:50:59

母虚拟机的安装 和 varnish(rhel6.5)的相关文章

windows系统安装虚拟机VMware12,然后在虚拟机中安装Red Hat Enterprise Linux6操作系统

准备工作下载百度网盘: https://www.baidu.com/s?wd=%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98&rsv_spt=1&rsv_iqid=0xfc68ab6200065efa&issp=1&f=8&rsv_bp=1&rsv_idx=2&ie=utf-8&tn=baiduhome_pg&rsv_enter=1&rsv_sug3=11&rsv_sug1=7&rsv

虚拟机中安装操作系统视频教程

本篇主要讲解在虚拟机中安装操作系统的练习教程.属于视频教程 视频教程的重点是要边看边学边做,希望能对大家有点帮助.有待改进的地方请留言给我,谢谢 视频下载地址:http://pan.baidu.com/s/1sj0Tkux 提取码:yuka

在虚拟机下安装ubuntu 10.04 64bit,并修改root用户密码

实验的环境: 笔记本是:HP 虚拟机:VMware  9 准备安装的操作系统: ubuntu 10.04  64bit 实验步骤: 一:让自己的hp支持虚拟化技术(由于ubuntu 10.04  64bit需要CPU支持虚拟化技术,所以要通过bios来更改电脑的默认设置) 启动时根据提示按 Esc 键 按 F10 键以配置 BIOS 使用箭头键滚动到"System Configuration" 选择"Virtualization Technology",然后按 En

KVM虚拟机的安装和日常管理

公司为了节约成本,需要把一部分业务迁到虚拟化平台上,今天把虚拟机装了出来,记一下笔记 1.物理机的系统安装(硬盘为300G+300G): centos6.5 64位,不安装桌面环境,默认运行级别为3 分区: /boot 128M swap 8G / 20G /data1  第一块硬盘剩余空间 /data2  第二块硬盘全部空间 采用最小化安装+以下软件包: BaseSystem -- Base Development-- Development tools 要配置好dns 确定系统时间与北京时间

VMware虚拟机下安装RedHat Linux 9.0

从这一篇文章开始我和大家一起学习Linux系统.不管是什么样的系统,必须安装上才能谈使用对吧. Linux版本 安装Linux之前需要了解一下Linux系统的安装版本. Linux的版本分为内核版本和发行版本. 内核版本: 内核版本是由Linux领导小组控制的. 内核提供了一个在裸设备与应用程序间的抽象层. 现在最新的版本为2.6.24 发行版本: 仅有内核而没有应用软件的操作系统是无法使用的,所以许多公司将内核.源代码以及相关的应用程序组织成一个完整的操作系统,这就是发行版本.它们的发行版本号

虚拟机下安装centos提醒增强功能

在VirtualBox虚拟机中安装了Centos系统,安装增强功能时报错,错误为"centos the headers for the current running kernel were not found......",报错原因是系统找不到kernel headers,在网上找到了方法,原解决方案为: 1)yum install gcc  -y 2)yum install gcc kernel-devel kernel-headers -y 3)重启系统 但在执行上述步骤并重启系

[IOS]VMware上虚拟机MAC安装XCode

1:VMware上虚拟机MAC安装前 VMware上安装Xcode之后 2:安装Xcode过程:把Xcode复制到虚拟机桌面上 3:复制完成之后,双击Xcode_6.4.dmg 文件 4:把Xcode.app 拖拽到Applications 5:安装完成后,点击Finder,找到应用程序Xcode.app 6:选中Xcode拖拽到Dock上 7:单机Xcode图标,然后Agree-->输入用户名 密码

在虚拟机中安装雨林木风XP镜像的正确步骤

在虚拟机中安装雨林木风XP镜像的正确步骤 (2011-08-11 14:50:50) 转载▼ 标签: 杂谈   1.  一个VMware Workstation的环境.雨林木风镜像是必要的 2.  新建虚拟机步骤 3.启动虚拟机 选择“3运行PQ8.05分区魔术师”,对磁盘进行分区 每个人的分区风格并不一样,这是我的风格,并执行,之后重启 选择“A安装到C盘,进行安装过程” 完成后会有重启操作,但是重启之后,并未出现系统安装界面,原因是未设置C盘“作用” 需要进入分区魔术大师,设置C盘活动. 重

Linux学习笔记——虚拟机中安装VMware Tools

0 前言 VMware Tools是VMware虚拟机中自带的一种增强工具,只有在VMware虚拟机中安装好了VMware Tools,才能实现主机与虚拟机之间的文件共享,实现文件在虚拟机之间的复制粘贴. 最近购买了周立功的一款EasyARM开发板,作为树莓派Linux学习的补充.在虚拟机中安装了周立功提供的ubuntu镜像,总觉得在主机和PC机之间直接复制粘贴才爽,所以又安装了Vmware Tools.     [相关博文] [ Linux学习笔记--vmware plarer中安装ubunt