灌溉梦想,记录脚步

LLT低延迟传输协议

Problem
Low Latency Transport / Global Atomic Broadcast frequently asked questions

Solution
Q: What is a cluster interconnect?

A: A cluster interconnect is a data path between nodes in a cluster for purposes of interchanging information about managed resources, as well as maintaining cluster membership. In the past the cluster interconnect was incorrectly termed a “heartbeat link”. This term is incorrect because it only refers to a small piece of the actual data traffic on an interconnect. In a VCS cluster the cluster interconnect carries information between nodes on node startup known as a snapshot, information on any change in resource status on any node in the cluster, as well as node to node heartbeat. When CFS or RAC components are added, these components also utilize the cluster interconnect for data traffic such as CFS metadata and RAC Cache Fusion.
继续阅读 »

Erlang简介

Erlang最初是爱立信为开发电信相关产品而产生。

Erlang是一种面向并发 (Concurrency Oriented),面向消息( Message Oriented)的函数式 (Functional)编程语言。

面向并发说明 Erlang支持大规模的并发应用,我们可以在应用中处理成千上万的并发,而不相互影响。面向消息,其实是为并发服务!我们应该都熟悉多线程,熟悉加锁解锁操作,熟悉可能出现的资源竞争与死锁。在 Erlang的世界里,我们可以将轻轻的抹去这些令人苦恼的词汇。 Erlang的世界,每个处理都是独立的个体,他们之间的交互仅仅靠消息!因此不会有死锁,不会有那种痛苦的编程经历。
继续阅读 »

CentOS6,RHEL6虚拟机克隆引起的网卡问题

系统环境:ubuntu
软件:virtualbox-ose
虚拟操作系统:centos6
问题描述:对虚拟系统进行克隆后,开机执行“ifconfig”看不到eth0,执行”service network restart“提示错误“Bringing up interface eth0: Device eth0 does not seem to be present, delaying initialization.”
解决方法:
方法一:(删除70-persistent-net.rules文件,并重启系统)
rm -fr /etc/udev/rules.d/70-persistent-net.rules
方法二:修改/etc/udev/rules.d/70-persistent-net.rules文件中刚生成的配置,就是对应正确MAC地址的eth1为eth0,并删除旧的配置项,之后重启网络服务。

创建基于CentOS的LiveCD

1,安装livecd相关工具

创建文件/etc/yum.repos.d/centos-livecd.repo

内容如下:

# Name: CentOS LiveCD repository
[livecd]
name = CentOS $releasever - LiveCD
baseurl = http://www.nanotechnologies.qc.ca/propos/linux/centos-live/$basearch/live
enabled=1
protect=0
gpgkey = http://www.nanotechnologies.qc.ca/propos/linux/RPM-GPG-KEY-PGuay2010

继续阅读 »

Exchange 2010 OWA URL配置

Exchange 2010像以往版本一样,带有WEB邮箱管理,同样URL使用的https://hostname/owa,理想情况下,输入mail.forzw.com会直接跳到邮件登录界面,就是https://hostname/owa展示的页面,一下方法可以实现这个要求:

打开IIS7,点击”Default Web Site”。
双击“http重定向”选中“将请求重定向到此目标”,并填写“/owa”,更改“状态代码”为302或301。
双击“错误页”,双击“403“,在“302重定向响应”输入你要重定向https的rul,这里输入 “https://mail.forzw.com”。

完成后重启IIS。

使用RMS管理文档权限

Windows Server Active Directory Rights Management Services(AD RMS)是一种与应用程序协作来保护数字内容(不论其何去何从)的安全技术,专为那些需要保护敏感的 Web 内容、文档和电子邮件的用户而设计。用户可以严格规定哪些用户可以打开、读取、修改和重新分发特定内容。组织可以创建权限策略模板,以实施用户应用于内容的策略。

RMS已经集成到windows server 2008中,可以通过添加“Windows Server Active Directory Rights Management Services”角色安装,过程略,注意:使用的证书一定要是权威机构颁发的,也就是在域环境中,需要使用由DC上的证书颁发机构颁发的证书,这个可以在安装过程中选择“稍微为SSL加密选择证书”,而后在ISS管理中向DC申请证书。

安装完成后,基本上不需要配置就可以使用,在windows vista以上版本中,就集成了rms客户端。rms的好处是在设置好某个文档的权限后,无论文档发布到那里,权限始终跟随,即权限设置是以文档为主体的,并非依靠的存储位置。