<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>月影鹏鹏 &#187; cluster(集群)</title>
	<atom:link href="http://jk.aiwaly.com/wp/category/it-technology/cluster/feed" rel="self" type="application/rss+xml" />
	<link>http://jk.aiwaly.com</link>
	<description>不断探索,追求卓越,做快乐自己</description>
	<lastBuildDate>Wed, 28 Dec 2011 08:29:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>在Linux上Ganeti集群虚拟化方法</title>
		<link>http://jk.aiwaly.com/wp/ganeti-cluster-on-linux.html</link>
		<comments>http://jk.aiwaly.com/wp/ganeti-cluster-on-linux.html#comments</comments>
		<pubDate>Mon, 04 Jul 2011 23:53:40 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[cluster(集群)]]></category>
		<category><![CDATA[虚拟化]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/?p=3024</guid>
		<description><![CDATA[Ganeti项目是管理整个集群虚拟实例的工具。它与Xen或KVM一起工作，作为底层管理程序并利用很多其它开源项目(如DRBD)来完成任务(如网络上的RAID)。
这篇文章将关注如何安装最新的稳定版本(2.2版本)并使其在双节点集群上工作。我们将通过几个必要的步骤，包括我们从Ganeti IRC频道(freenode上的 #ganeti)了解到的几件事。

设置Ganeti系统
这篇文章，我们选择Debian Lenny作为基本操作系统，因为很多已出版的指导书是基于这个发布系统。最简单的安装方法就是从Debian主页下载网络安装映像。为了达到目的，我们下载64位计算机系统的映像，将ISO映像刻录到CD。如果你的网速，这个方法的效果是最好的。
当你着手安装过程时，你需要记住几件事。Ganeti需要单独的分区用于存储虚拟实例。必须格式化它来运用逻辑卷管理器(LVM)，并在安装过程中进行额外的配置。另一件要记住的事是内核版本号的重要性。Xen运行在现有的最高端内核上，你需要保证内核版本相匹配来避免兼容性问题。
当你有大量节点时，命名变得至关重要。因为Ganeti需要所有集群节点完全符合域名(FQDN)。如果你选择默认安装，你将需要在几个文件上作少许改变。这包括/etc/hosts 和/etc/hostname。用下面的命令，你可以很快区分你是否正确命名配置：
$ hostname
它应该返回debian1.mydomain.net形式的东西，而不是简单的debian1形式。你需要编辑、更改这两个文件，并执行/etc/init.d/hostname.sh来开始设置新名称。节点的真实IP地址也应该在/etc/hosts文件中使用。
Ganeti和Xen的虚拟化
虽然Ganeti需要与KVM 和Xen一起工作，这篇文章重心在Xen。这也是内核版本关键之处。执行必要步骤的最简单方法是切换到用户root，然后使用apt-get命令，如下：
$ su root
password: XXXXXXX
# apt-get install xen-hypervisor-3.2.1-amd64 xen-linux-system-2.6.26-2-xen-amd64 xen-utils-3.2-1 xen-tools
一旦这个过程完成，你将需要重启到新内核。Uname命令应该显示如下：
$ uname –r
2.6.26-2-xen-amd64
最后一步是添加新网络设备作为虚拟实例和真实的以太网接口之间的桥梁。这需要在/etc/network/interfaces中编辑添加以下内容：
auto xen-br0
 iface xen-br0 inet static
   address YOUR_IP_ADDRESS
   netmask YOUR_NETMASK
   network YOUR_NETWORK
   broadcast YOUR_BROADCAST_ADDRESS
   gateway YOUR_GATEWAY
   bridge_ports eth0 bridge_stp off bridge_fd 0
这将在YOUR_IP_ADDRESS静态地址中生成名为xen-br0的新设备。一定要用适合你网络的标签更换其他“YOUR”标签。完成了编辑，你必须开始用下面的命令控制接口：
# ifdown eth0 ifup xen-br0
安装Ganeti
在完成安装Ganeti之前的最后一个步骤，配置LVM卷组。假设你有一个为LVM配置的分区(我们的是 [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/ganeti-cluster-on-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centos配置Keepalived 做双机热备切换</title>
		<link>http://jk.aiwaly.com/wp/centos-keepalived-ha.html</link>
		<comments>http://jk.aiwaly.com/wp/centos-keepalived-ha.html#comments</comments>
		<pubDate>Sat, 11 Jun 2011 06:53:16 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[Architecture(架构)]]></category>
		<category><![CDATA[cluster(集群)]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/?p=2986</guid>
		<description><![CDATA[Keepalived
系统环境：
************************************************************
两台服务器都装了 CentOS-5.2-x86_64 系统
Virtual IP ：                    192.168.30.20              
Squid1+Real Server 1 ：       网卡地址 (eth0):192.168.30.12     
Squid2+Real Server 2 ：        网卡地址 (eth0):192.168.30.13   
************************************************************
 
软件列表 ：
keepalived
http://www.keepalived.org/software/keepalived-1.1.17.tar.gz
openssl-devel
 yum -y install openssl-devel
***************************************************************
配置：
配置基于高可用 keepalived, 确定 LVS 使用 DR 模式
1. 安装配置 keepalived
1.1 安装依赖软件 如果系统为基本文本安装,需要安装一下软件
# yum -y install ipvsadm
# yum -y install kernel kernel-devel
# reboot   重启系统切换内核
# yum -y install openssl-devel                              ；安装 keepalived 依赖软件
#ln -s /usr/src/kernels/`uname -r`-`uname -m`/ /usr/src/linux      
    ；建立内核链接，编译 keepalived [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/centos-keepalived-ha.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>keepalvied无法和ipvs结合的问题</title>
		<link>http://jk.aiwaly.com/wp/keepalvied-ipvs-question.html</link>
		<comments>http://jk.aiwaly.com/wp/keepalvied-ipvs-question.html#comments</comments>
		<pubDate>Sat, 11 Jun 2011 06:51:35 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[Architecture(架构)]]></category>
		<category><![CDATA[cluster(集群)]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/?p=2984</guid>
		<description><![CDATA[ 配置的，百思不得其解，以同样的方式安装了几次操作系统，都没有解决，操作系统是CentOs 5.4，keepalived也编译过几次，都没用。
后来在一次编译keepalived时才发现configure的最后几行如下：
Keepalived version       : 1.1.15
Compiler                 : gcc
Compiler flags           : -g -O2
Extra Lib                : -lpopt -lssl -lcrypto
Use IPVS Framework       : No
IPVS sync daemon support : No
Use VRRP Framework       : Yes
Use LinkWatch            : No
Use Debug flags          : No
原来是没有找到内核源代码。faint。keepalived默认编译时是在/usr/src/linux下找内核源代码。可是我的内核源代码都在：/usr/src/kernels/2.6.18-164.el5-i686/（安装yum -y install kernel-devel)　这个目录下。
解决办法： ln -s /usr/src/kernels/2.6.18-164.el5-i686/  /usr/src/linux
然后重新编译keepalived
正确的是这样的：
Keepalived configuration
————————
Keepalived version       : 1.1.15
Compiler                 : gcc
Compiler flags           : -g -O2
Extra Lib                : [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/keepalvied-ipvs-question.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(keepalived-1.2.1)双机热备编译安装配置流程</title>
		<link>http://jk.aiwaly.com/wp/keepalived-1-2-1.html</link>
		<comments>http://jk.aiwaly.com/wp/keepalived-1-2-1.html#comments</comments>
		<pubDate>Sat, 11 Jun 2011 06:49:37 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[Architecture(架构)]]></category>
		<category><![CDATA[cluster(集群)]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/wp/keepalived-1-2-1%e5%8f%8c%e6%9c%ba%e7%83%ad%e5%a4%87%e7%bc%96%e8%af%91%e5%ae%89%e8%a3%85%e9%85%8d%e7%bd%ae%e6%b5%81%e7%a8%8b.html</guid>
		<description><![CDATA[
版本 keepalived-1.2.1 
(编译最新版本1.2.2时候发生错误)
/usr/include/sys/types.h:235: error: conflicting types for &#8216;blkcnt_t&#8217;
/usr/src/linux/include/linux/types.h:142: error: previous declaration of &#8216;blkcnt_t&#8217; was here
make[2]: *** [ip_vs_nl_policy.o] Error 1
环境：Linux 2.6.18-128.el5 #1 SMP Wed Dec 17 11:41:38 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
因为keepalived 运行在ipvs之上因此这两个软件一定要安装在一个系统里面。如果configure操作能正常进行，运行完毕后将有如下的汇总输出：
Keepalived configuration
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
Keepalived version       : 1.2.1
Compiler                 : gcc
Compiler flags           : -g -O2 -DETHERTYPE_IPV6=0&#215;86dd
Extra Lib                : -lpopt -lssl -lcrypto
Use IPVS Framework       : Yes
IPVS sync daemon support [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/keepalived-1-2-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>我怎么能下设置多个redmines之一的apache2.2</title>
		<link>http://jk.aiwaly.com/wp/how-can-i-setup-multiple-redmines-under-one-domain-with-apache2-2.html</link>
		<comments>http://jk.aiwaly.com/wp/how-can-i-setup-multiple-redmines-under-one-domain-with-apache2-2.html#comments</comments>
		<pubDate>Thu, 10 Mar 2011 08:00:23 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[Architecture(架构)]]></category>
		<category><![CDATA[cluster(集群)]]></category>
		<category><![CDATA[question (问题)]]></category>
		<category><![CDATA[开源软件]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/wp/%e6%88%91%e6%80%8e%e4%b9%88%e8%83%bd%e4%b8%8b%e8%ae%be%e7%bd%ae%e5%a4%9a%e4%b8%aaredmines%e4%b9%8b%e4%b8%80%e7%9a%84apache2-2.html</guid>
		<description><![CDATA[How can i setup multiple redmines under one domain with apache2.2?

Assuming you&#8217;re using an apache/mongrel set up like the one described in HowTo_run_Redmine_with_a_Mongrel_cluster,  use something like this in your apache config should work.  Though I  haven&#8217;t tried it myself.  Also note that redmine supports multiple  projects, so something the urls [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/how-can-i-setup-multiple-redmines-under-one-domain-with-apache2-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LVS集群的应用介绍</title>
		<link>http://jk.aiwaly.com/wp/lvs-cluster-intrduction.html</link>
		<comments>http://jk.aiwaly.com/wp/lvs-cluster-intrduction.html#comments</comments>
		<pubDate>Mon, 08 Feb 2010 03:38:00 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[cluster(集群)]]></category>
		<category><![CDATA[linux 应用]]></category>
		<category><![CDATA[开源软件]]></category>
		<category><![CDATA[服务器管理]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/?p=1956</guid>
		<description><![CDATA[LVS集群的应用
LVS项目从成立到现在为止，受到不少关注，LVS集群系统已被应用于很多重负载的站点，就我所知该系统已在美、英、德、澳等国的几十个站点上正式使用。
我们没有上百台机器和高速的网络来实际测试LVS的终极性能，所以举LVS的应用实例来说明LVS的高性能和稳定性。我们所知的一些大型LVS应用实例如下：


英国国家JANET Cache Service（wwwcache.ja.net）是为英国150所以上的大学提供Web Cache服务。他们用28个结点的LVS集群代替了原有现50多台相互独立的Cache服务器，用他们的话说现在速度就跟夏天一样，因为夏天是放假期间没有很多人使用网络。
Linux的门户站点（www.linux.com）用LVS将很多台VA Linux SMP服务器组成高性能的WEB服务，已使用将近一年。
SourceForge（sourceforge.net）是在全球范围内为开发源码项目提供WEB、FTP、Mailing List和CVS等服务，他们也使用LVS将负载调度到十几台机器上。
世界上最大的PC制造商之一采用了两个LVS集群系统，一个在美洲，一个在欧洲，用于网上直销系统。
以RealPlayer提供音频视频服务而闻名的Real公司（www.real.com）使用由20台服务器组成的LVS集群，为其全球用户提供音频视频服务。在2000年3月时，整个集群系统已收到平均每秒20,000个连接的请求流。
NetWalk（www.netwalk.com）用多台服务器构造LVS系统，提供1024个虚拟服务，其中本项目的一个美国镜像站点（www.us.linuxvirtualserver.org）。
RedHat（www.redhat.com）从其6.1发行版起已包含LVS代码，他们开发了一个LVS集群管理工具叫Piranha，用于控制LVS集群，并提供了一个图形化的配置界面。
VA Linux（www.valinux.com）向客户提供基于LVS的服务器集群系统，并且提供相关的服务和支持。
TurboLinux的&#8221;世界一流Linux集群产品&#8221;TurboCluster实际上是基于LVS的想法和代码的，只是他们在新闻发布和产品演示时忘了致谢 。
红旗Linux和中软都提供基于LVS的集群解决方案，并在2000年9月召开的Linux World China 2000上展示。

在这里，再引用两位LVS用户的评论，来进一步说明LVS的性能和可靠性。
LVS集群的特点
LVS集群的特点可以归结如下：

功能
有实现三种IP负载均衡技术和八种连接调度算法的IPVS软件。在IPVS内部实现上，采用了高效的Hash函数和垃圾回收机制，能正确处理所调度报文相 关的ICMP消息（有些商品化的系统反而不能）。虚拟服务的设置数目没有限制，每个虚拟服务有自己的服务器集。它支持持久的虚拟服务（如HTTP Cookie和HTTPS等需要该功能的支持），并提供详尽的统计数据，如连接的处理速率和报文的流量等。针对大规模拒绝服务（Deny of Service）攻击，实现了三种防卫策略。
有基于内容请求分发的应用层交换软件KTCPVS，它也是在Linux内核中实现。有相关的集群管理软件对资源进行监测，能及时将故障屏蔽，实现系统的高可用性。主、从调度器能周期性地进行状态同步，从而实现更高的可用性。
适用性
后端服务器可运行任何支持TCP/IP的操作系统，包括Linux，各种Unix（如FreeBSD、Sun Solaris、HP Unix等），Mac/OS和Windows NT/2000等。
负载调度器能够支持绝大多数的TCP和UDP协议：



协议
内 容


TCP
HTTP，FTP，PROXY，SMTP，POP3，IMAP4，DNS，LDAP，HTTPS，SSMTP等


UDP
DNS，NTP，ICP，视频、音频流播放协议等



无需对客户机和服务器作任何修改，可适用大多数Internet服务。
性能
LVS服务器集群系统具有良好的伸缩性，可支持几百万个并发连接。配置100M网卡，采用VS/TUN或VS/DR调度技术，集群系统的吞吐量可高达1Gbits/s；如配置千兆网卡，则系统的最大吞吐量可接近10Gbits/s。
可靠性
LVS服务器集群软件已经在很多大型的、关键性的站点得到很好的应用，所以它的可靠性在真实应用得到很好的证实。有很多调度器运行一年多，未作一次重启动。
软件许可证
LVS集群软件是按GPL（GNU Public License）许可证发行的自由软件，这意味着你可以得到软件的源代码，有权对其进行修改，但必须保证你的修改也是以GPL方式发行。

虚拟服务器软件IPVS
在调度器的实现技术中，IP负载均衡技术是效率最高的。在已有的IP负载均衡技术中有通过网络地址转换（Network Address Translation）将一组服务器构成一个高性能的、高可用的虚拟服务器，我们称之为VS/NAT技术（Virtual Server via Network Address Translation），大多数商品化的IP负载均衡调度器产品都是使用此方法，如Cisco的LocalDirector、F5的Big/IP和 Alteon的ACEDirector。在分析VS/NAT的缺点和网络服务的非对称性的基础上，我们提出通过IP隧道实现虚拟服务器的方法VS/TUN （Virtual Server via IP Tunneling），和通过直接路由实现虚拟服务器的方法VS/DR（Virtual Server via Direct Routing），它们可以极大地提高系统的伸缩性。所以，IPVS软件实现了这三种IP负载均衡技术，它们的大致原理如下（我们将在其他章节对其工作原 理进行详细描述），

Virtual Server via Network Address Translation（VS/NAT）
通过网络地址转换，调度器重写请求报文的目标地址，根据预设的调度算法，将请求分派给后端的真实服务器；真实服务器的响应报文通过调度器时，报文的源地址被重写，再返回给客户，完成整个负载调度过程。
Virtual Server via IP Tunneling（VS/TUN）
采用NAT技术时，由于请求和响应报文都必须经过调度器地址重写，当客户请求越来越多时，调度器的处理能力将成为瓶颈。为了解决这个问题，调度器把请求报 文通过IP隧道转发至真实服务器，而真实服务器将响应直接返回给客户，所以调度器只处理请求报文。由于一般网络服务应答比请求报文大许多，采用 VS/TUN技术后，集群系统的最大吞吐量可以提高10倍。
Virtual Server via Direct Routing（VS/DR）
VS/DR通过改写请求报文的MAC地址，将请求发送到真实服务器，而真实服务器将响应直接返回给客户。同VS/TUN技术一样，VS/DR技术可极大地 [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/lvs-cluster-intrduction.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>智能dns服务器配置</title>
		<link>http://jk.aiwaly.com/wp/zhineng-dns-configure.html</link>
		<comments>http://jk.aiwaly.com/wp/zhineng-dns-configure.html#comments</comments>
		<pubDate>Sat, 06 Feb 2010 12:24:56 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[Architecture(架构)]]></category>
		<category><![CDATA[cluster(集群)]]></category>
		<category><![CDATA[linux 应用]]></category>
		<category><![CDATA[探索中的鹏鹏工作室]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/?p=1934</guid>
		<description><![CDATA[智能DNS配置
1、通过智能DNS自动解析,自动判断网通和电信用户,真正做到南北互联，从而做到网站加速。
2、负责配置好BIND智能dns配置，并做一个月的配置服务。
3、提供一份区分电信、网通、教育网、移动网络的ip分配表。
4、要求安装智能dns的服务器为linux 服务器。

什么是智能DNS？

域名DNS智能分网负载均衡解析技术（简称DNS智能解析），就是使同时拥有两台或多台不同地区及接入镜像服务器的互联网内容信息服务商（ICP），通 过DNS智能解析技术，让其内容信息访问者或用户尽可能使用同一地区或同一接入ISP或互访速度较快的网络来高速访问其提供的服务，从而从根本上解决或者 减轻网络拥挤而造成的网站信息访问者或客户丢失而带来的种种直接或者间接的经济损失。而我们的双线空间，一个空间两个IP，您只需要用一个空间就可以实现 两台服务器才能完成的工作。
智能dns 比 传统CDN的优势？
传统的CDN加速是静态页面加速,如果您的网站有ASP程序如论坛,则北方用户访问同样是很慢。而使用我们的双线空间,空间一个空间两个IP,北方用户用 网通,南方用户用电信,因为是同一个空间,不管是asp程序还是普通的web页面都是同样的快,加上智能DNS自动解析,自动判断网通和电信用户,真正做 到南北互联。

]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/zhineng-dns-configure.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keepalived与Haproxy和LVS应用一则实例</title>
		<link>http://jk.aiwaly.com/wp/keepalived%e4%b8%8ehaproxy%e5%92%8clvs%e5%ba%94%e7%94%a8%e4%b8%80%e5%88%99%e5%ae%9e%e4%be%8b.html</link>
		<comments>http://jk.aiwaly.com/wp/keepalived%e4%b8%8ehaproxy%e5%92%8clvs%e5%ba%94%e7%94%a8%e4%b8%80%e5%88%99%e5%ae%9e%e4%be%8b.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 05:49:22 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[Architecture(架构)]]></category>
		<category><![CDATA[cluster(集群)]]></category>
		<category><![CDATA[linux 应用]]></category>
		<category><![CDATA[服务器管理]]></category>

		<guid isPermaLink="false">http://jk.scanmon.com/1847.html</guid>
		<description><![CDATA[前言: keepalived与Haproxy keepalived与LVS搭配一起使用的文章不少,这次要讲述的是我实际应用中的一种实例.
环境:
Centos 5.2
Slackware 12.1.0
keepalived 1.1.17
Haproxy  1.3.17
ipvsadm 1.24
需求:1、有两台做负载均衡的服务器A 192.168.0.240和 B 192.168.0.250
2、负载均衡服务haproxy和LVS任选一种都可以
3、有两个虚拟IP VIP1: 192.168.0.1 VIP2: 192.168.0.2 (就当是外网IP吧)
4、要求VIP 1在A服务器上为Master VIP2在B服务器上为Master
目的是提高两个服务器的利用率
具体配置：（具体安装就省了）


vrrp_sync_group VG1 {
       VI_1
}
vrrp_sync_group VG2 {
      VI_2
}
vrrp_instance VI_1 {
      state MASTER
      interface eth0
     [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/keepalived%e4%b8%8ehaproxy%e5%92%8clvs%e5%ba%94%e7%94%a8%e4%b8%80%e5%88%99%e5%ae%9e%e4%be%8b.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lvs 使用经验积累</title>
		<link>http://jk.aiwaly.com/wp/lvs-%e4%bd%bf%e7%94%a8%e7%bb%8f%e9%aa%8c%e7%a7%af%e7%b4%af.html</link>
		<comments>http://jk.aiwaly.com/wp/lvs-%e4%bd%bf%e7%94%a8%e7%bb%8f%e9%aa%8c%e7%a7%af%e7%b4%af.html#comments</comments>
		<pubDate>Thu, 03 Dec 2009 07:49:35 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[Architecture(架构)]]></category>
		<category><![CDATA[cluster(集群)]]></category>
		<category><![CDATA[开源软件]]></category>
		<category><![CDATA[lvs]]></category>

		<guid isPermaLink="false">http://jacky.scanmon.com/?p=1339</guid>
		<description><![CDATA[lvs 使用经验积累
LVS是一个开源的软件，可以实现LINUX平台下的简单负载均衡。LVS是Linux Virtual Server的缩写，意思是Linux虚拟服务器。
lvs 是一个开源的集群软件可以以最低的成本组建高负载的集群系统。甚至可以达到著名负载均衡设备F5的性能。F5 可以达到连接数是800万个，而lvs 可以到达 500 万个。 F5 负载均衡器我们当初购买的时候买的还是最便宜的那种，也要20万左右，相对这样昂贵的F5来说是个很好的选择。
今天突然想起我还在维护的服务器前端还有个lvs服务器的，看来lvs 在不是很繁忙的网站下还是蛮稳定的。竟然是一度忽视了lvs的 存在。 lvs 竟然已经运行了273天。
perceptor:~# uptime
15:13:38 up 273 days, 22:03,  2 users,  load average: 0.00, 0.00, 0.00
perceptor:~# ipvsadm -L
IP Virtual Server version 1.2.1 (size=4096)
Prot LocalAddress:Port Scheduler Flags
-&#62; RemoteAddress:Port           Forward Weight ActiveConn InActConn
TCP  220.195.xx.118:www wrr persistent 300
-&#62; 220.195.xx.119:www            Route   1      315          234
-&#62; 220.195.xx.126:www            Route   3 [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/lvs-%e4%bd%bf%e7%94%a8%e7%bb%8f%e9%aa%8c%e7%a7%af%e7%b4%af.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>基于debian etch 的xen集群。</title>
		<link>http://jk.aiwaly.com/wp/%e5%9f%ba%e4%ba%8edebian-etch-%e7%9a%84xen%e9%9b%86%e7%be%a4%e3%80%82.html</link>
		<comments>http://jk.aiwaly.com/wp/%e5%9f%ba%e4%ba%8edebian-etch-%e7%9a%84xen%e9%9b%86%e7%be%a4%e3%80%82.html#comments</comments>
		<pubDate>Tue, 01 Dec 2009 03:28:59 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[cluster(集群)]]></category>
		<category><![CDATA[虚拟化]]></category>
		<category><![CDATA[xen]]></category>
		<category><![CDATA[集群]]></category>

		<guid isPermaLink="false">http://jacky.scanmon.com/?p=1327</guid>
		<description><![CDATA[基于debian etch 的xen集群。
服务器操作系统  debian etch
通过DRBD 模拟盘阵镜像，有条件的最好用接磁盘阵列。
有兴趣可以尝试一下吧。
Xen Cluster Management With Ganeti On Debian Etch
http://www.howtoforge.com/ganeti_xen_cluster_management_debian_etch
]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/%e5%9f%ba%e4%ba%8edebian-etch-%e7%9a%84xen%e9%9b%86%e7%be%a4%e3%80%82.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

