Posts

Showing posts from July 7, 2010

Heartbeat Clustering

basics of Clustering, advantages of Clustering and configuration of simple fail-over Cluster . Let’s start. What is a Cluster any way? Ans : A computer cluster is a group of linked computers , working together closely so that in many respects they form a single computer. The components of a cluster are commonly, but not always, connected to each other through fast local area networks. Clusters are usually deployed to improve performance and/or availability over that of a single computer, while typically being much more cost-effective than single computers of comparable speed or availability – www.wikipedia.org . Cluster terminology. Node : It’s one of the system/computer which participates with other systems to form a Cluster. Heartbeat : This a pulse kind of single which is send from all the nodes at regular intervals using a UDP packet so that each system will come to know the status of availability of other node. It’s a kind of door knocking activity like pinging...

SVN_APACHE Repository Configuration

1.)Setting Up A Subversion Repository Using Apache, With Auto Updatable Working Copy: What is Subversion? Subversion is a free/open-source version control system. That is, Subversion manages files and directories over time. A tree of files is placed into a central repository. The repository is much like an ordinary file server, except that it remembers every change ever made to your files and directories. This allows you to recover older versions of your data, or examine the history of how your data changed. In this regard, many people think of a version control system as a sort of “time machine”. SVN has few methods to serve its users. Below are some examples: 1, SVN+SSH 2, SVN+Apache 3, SVNServe In this case we are using the Apache method. Apache should be running as an normal user, not nobody. I won't guide people how to install apache in this how to. Install subversion using yum #yum install subversion Apache Configuration : Edit the default configuration file,...