<?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>Neuron Ring&#039;s Blog &#187; Unix and Linux</title>
	<atom:link href="http://blogs.neuronring.com/error_handler.php/blogs/category/computer/unix-and-linux/feed/?404;http://blogs.neuronring.com:80/blogs/category/computer/unix-and-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.neuronring.com</link>
	<description>The Variable,&#34;Change&#34;, is always &#34;Constant&#34; - Neuron Ring</description>
	<lastBuildDate>Fri, 19 Mar 2010 09:36:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HP Serviceguard Configuration Guide- serviceguard cluster commands, cmviewcl, cmhaltpkg, cmrunpkg</title>
		<link>http://blogs.neuronring.com/blogs/computer/unix-and-linux/hp-serviceguard-configuration-serviceguard-cluster-commands-cmviewcl-cmhaltpkg-cmrunpkg/</link>
		<comments>http://blogs.neuronring.com/blogs/computer/unix-and-linux/hp-serviceguard-configuration-serviceguard-cluster-commands-cmviewcl-cmhaltpkg-cmrunpkg/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 09:36:16 +0000</pubDate>
		<dc:creator>R Gopinath</dc:creator>
				<category><![CDATA[Unix and Linux]]></category>

		<guid isPermaLink="false">http://blogs.neuronring.com/?p=472</guid>
		<description><![CDATA[HP Serviceguard
HP Serviceguard was the very first solution for high availability clustering software. Serviceguard uses resource virtualization to ensure that critical applications, databases, or services are continually up and running. Users typically don’t care which server they run their application on—they just want to make sure that application is running. Serviceguard hides the details of [...]]]></description>
			<content:encoded><![CDATA[<h2>HP Serviceguard</h2>
<p>HP Serviceguard was the very first solution for high availability clustering software. Serviceguard uses resource virtualization to ensure that critical applications, databases, or services are continually up and running. Users typically don’t care which server they run their application on—they just want to make sure that application is running. Serviceguard hides the details of which server an application is actually running on at any given time, which means it can move applications between servers on the fly.</p>
<p style="text-align: center;"><img class="size-medium wp-image-474  aligncenter" title="hp-serviceguard" src="http://blogs.neuronring.com/wp-content/uploads/2010/03/hp-serviceguard-300x195.jpg" alt="hp-serviceguard" width="300" height="195" /></p>
<p> </p>
<h2><span style="FONT-SIZE: 11pt; LINE-HEIGHT: 115%">What is a Serviceguard cluster?</span></h2>
<p>Any host system running in a Serviceguard cluster is called an <strong>active node</strong>. Under normal conditions, a fully operating Serviceguard cluster<strong> </strong>monitors the health of the cluster&#8217;s components on all its active nodes.Most Serviceguard packages are failover packages. When you configure a<strong> </strong>failover package, you specify which active node will be the <strong>primary node </strong>where the package will start, and one or more other nodes, called<strong> adoptive nodes</strong>, that can also run the package.<strong> </strong></p>
<h2>Creating a Serviceguard  cluster</h2>
<p>Before you configure the cluster, you will need to create a volume group on the shared disks, so that Service Guard can create a “Cluster Lock Disk”.</p>
<p style="text-align: center;"><img class="size-medium wp-image-475  aligncenter" title="serviceguard-configuration" src="http://blogs.neuronring.com/wp-content/uploads/2010/03/serviceguard-configuration-300x151.gif" alt="serviceguard-configuration" width="300" height="151" /></p>
<p> </p>
<p>On testnode1</p>
<p> <strong># pvcreate /dev/rdsk/c0t4d0</strong></p>
<p><strong># pvcreate /dev/rdsk/c1t4d0</strong></p>
<p><strong># mkdir /dev/vg01</strong></p>
<p><strong># mknod /dev/vg01/group c 64 0&#215;010000</strong></p>
<p><strong># vgcreate vg01 /dev/dsk/c0t4d0 /dev/dsk/c1t4d0</strong></p>
<p><strong># mkdir /etc/cmcluster/maps</strong></p>
<p><strong># vgexport –p –s –m vg01 /etc/cmcluster/maps/vg01</strong></p>
<p><strong> </strong>On testnode2</p>
<p> <strong># mkdir /dev/vg01</strong></p>
<p><strong># mknod /dev/vg01/group c 64 0&#215;010000</strong></p>
<p><strong># mkdir /etc/cmcluster/maps</strong></p>
<p><strong># rcp testnode1:/etc/cmcluster/maps/vg01 /etc/cmcluster/maps/vg01</strong></p>
<p><strong># vgimport –s –m /etc/cmcluster/maps/vg01 vg01</strong></p>
<p><strong># vgchange –a y vg01</strong></p>
<p><strong># vgchange –a n vg01</strong></p>
<p>You can now go ahead and create the cluster.</p>
<p><strong># cd /etc/cmcluster</strong></p>
<p><strong># cmquerycl –v –C cmclconfig.ascii –n testnode1 -n testnode2</strong></p>
<p>After creating this file, you will need to edit it to suit your cluster. You will need to</p>
<p>alter the following lines:</p>
<p> <strong># vi cmclconfig.ascii</strong></p>
<p><strong> </strong>CLUSTER_NAME simeon1</p>
<p>NODE_NAME testnode1</p>
<p>NETWORK_INTERFACE lan0</p>
<p>HEARTBEAT_IP 192.168.100.101</p>
<p>NETWORK_INTERFACE lan1</p>
<p>HEARTBEAT_IP 164.39.8.92</p>
<p>NETWORK_INTERFACE lan2</p>
<p>NODE_NAME testnode2</p>
<p>NETWORK_INTERFACE lan0</p>
<p>HEARTBEAT_IP 192.168.100.102</p>
<p>NETWORK_INTERFACE lan1</p>
<p>HEARTBEAT_IP 164.39.8.93</p>
<p>NETWORK_INTERFACE lan2</p>
<p>HEARTBEAT_INTERVAL 2000000</p>
<p>NODE_TIMEOUT 5000000</p>
<p>MAX_CONFIGURED_PACKAGES 10</p>
<p> To check that there are no mistakes in the file, use the check command.</p>
<p> <strong># cmcheckconf –C /etc/cmcluster/cmclconfig.ascii</strong></p>
<p><strong> </strong>To apply the configuration file, usr the apply command.</p>
<p> <strong># cmapplyconf –C /etc/cmcluster/cmclconfig.ascii</strong></p>
<p> You are now ready to startup the cluster.</p>
<p>On testnode1</p>
<p><strong># vgchange –a n vg01</strong></p>
<p><strong># cmruncl –v</strong></p>
<p><strong># cmviewcl –v</strong></p>
<p><strong># vgchange –c y vg01</strong></p>
<p>On Both nodes</p>
<p><strong># netstat -in</strong></p>
<p><strong># vi /etc/rc.config.d/cmcluster</strong></p>
<p>AUTOSTART_CMCLD=1</p>
<p>On testnode1</p>
<p><strong># cmhaltcl –v</strong></p>
<p><strong># vgchange –a n vg01</strong></p>
<h2>Creating a basic package</h2>
<p>Serviceguard packages group together applications and the services and resources they depend on. The typical Serviceguard package is a failover package that starts on one node but can be moved (“failed over”) to another if necessary.</p>
<p>Creating or modifying a package requires the following broad steps:</p>
<p>1. Generate the package ASCII file</p>
<p>2. Edit the package ASCII file</p>
<p>3. Generate the package control script</p>
<p>4. Edit the package control script</p>
<p>5. Distribute the control script to the cluster nodes</p>
<p>6. Apply the package ASCII file</p>
<p>Once the cluster is up and running, we can create a package to run in it. This package will run an “xclock” on a client PC, and mount a file system, using the IP Address 164.39.8.101 The first step is to make a logical volume.</p>
<p>On node1</p>
<p><strong># vgchange –a e vg01</strong></p>
<p><strong># lvcreate –L 20 vg01</strong></p>
<p><strong># lvextend –m 1 /dev/vg01/lvol1</strong></p>
<p><strong># newfs –F vxfs /dev/vg01/rlvol1</strong></p>
<p><strong># mkdir /pkg_1</strong></p>
<p><strong># vi /etc/fstab</strong></p>
<p>#/dev/vg01/lvol1 /pkg_1 vxfs delaylog 0 2 # MC/SG</p>
<p><strong># vgchange –a n vg01</strong></p>
<p><strong># vgexport –p –s –m vg01 /etc/cmcluster/maps/vg01</strong></p>
<p>On Node 2</p>
<p><strong># vgexport vg01</strong></p>
<p><strong># mkdir /dev/vg01</strong></p>
<p><strong># mknod /dev/vg01/group c 64 0&#215;010000</strong></p>
<p><strong># vgimport –s –m /etc/cmlcuster/maps/vg01 vg01</strong></p>
<p><strong># mkdir /pkg_1</strong></p>
<p><strong># vi /etc/fstab</strong></p>
<p>#/dev/vg01/lvol1 /pkg_1 vxfs delaylog 0 2 # MC/SG</p>
<p>Now we can make the package.</p>
<p>On Node1</p>
<p><strong># cd /etc/cmcluster</strong></p>
<p><strong># mkdir pkg_1</strong></p>
<p><strong># cd pkg_1</strong></p>
<p><strong># cmmakepkg –p pkg_1.conf</strong></p>
<p>The file pkg_1.conf will need to be edited to suit.</p>
<p><strong># vi pkg_1.conf</strong></p>
<p>PACKAGE_NAME pkg_1</p>
<p>NODE_NAME testnode1</p>
<p>NODE_NAME testnode2</p>
<p>RUN_SCRIPT /etc/cmcluster/pkg_1/pkg_1.cntl</p>
<p>RUN_SCRIPT_TIMEOUT NO_TIMEOUT</p>
<p>HALT_SCRIPT /etc/cmcluster/pkg_1/pkg_1.cntl</p>
<p>HALT_SCRIPT_TIMEOUT NO_TIMEOUT</p>
<p>SERVICE_NAME pkg_1_service</p>
<p>SUBNET 164.39.8.0</p>
<p>Add the IP address that will be used for the package in the hosts file.</p>
<p><strong># vi /etc/hosts</strong></p>
<p>164.39.8.101 pkg_1 xclock</p>
<p><strong># cmmakepkg –s pkg_1.cntl</strong></p>
<p>The file pkg_1.cntl will need to be edited to suit</p>
<p><strong># vi pkg_1.cntl</strong></p>
<p>VG[0]=&#8221;vg01&#8243;</p>
<p>LV[0]=&#8221;/dev/vg01/lvol1&#8243;; FS[0]=&#8221;/pkg_1&#8243;; FS_MOUNT_OPT[0]=&#8221;"</p>
<p>IP[0]=&#8221;164.39.8.101&#8243;</p>
<p>SUBNET[0]=&#8221;164.39.8.0&#8243;</p>
<p>SERVICE_NAME[0]=&#8221;pkg_1_service&#8221;</p>
<p>SERVICE_CMD[0/etc/cmcluster/pkg_1/service_pkg_1"</p>
<p>#SERVICE_RESTART[0]=&#8221;"</p>
<p>function customer_defined_run_cmds</p>
<p>{</p>
<p># ADD customer defined run commands.</p>
<p>if [ $(hostname) = "testnode1" ]</p>
<p>then COLOUR=&#8221;blue&#8221;</p>
<p>else COLOUR=&#8221;red&#8221;</p>
<p>fi</p>
<p>/usr/bin/X11/xclock -bg &#8220;$COLOUR&#8221; -update 1 –display \</p>
<p>164.39.11.232:0.0 &amp;</p>
<p>test_return 51</p>
<p>}</p>
<p>function customer_defined_halt_cmds<br />
{</p>
<p># ADD customer defined halt commands.</p>
<p>if</p>
<p>ps -ef |grep -v grep |grep -q &#8220;xclock&#8221;</p>
<p>then</p>
<p>kill -9 $(ps -ef |grep -v grep |grep &#8220;xclock&#8221;|cut -c10-14)</p>
<p>fi</p>
<p>test_return 52</p>
<p>}</p>
<p><strong># vi pkg_1_service</strong></p>
<p>#!/usr/bin/sh</p>
<p>#This is a script to monitor that xclock is running</p>
<p>while true</p>
<p>do</p>
<p>if</p>
<p>ps -ef |grep -v grep |grep -q &#8220;xclock&#8221;</p>
<p>then</p>
<p>sleep 5</p>
<p>else</p>
<p>echo &#8220;Package xclock failed at $(date) from node \</p>
<p>$(hostname) &gt; /etc/cmcluster/pkg_1/pkg_1.cntl.log”</p>
<p>exit 99</p>
<p>fi</p>
<p>done</p>
<p><strong># chmod u+x pkg_1_servce</strong></p>
<p><strong># cd /etc/cmcluster</strong></p>
<p><strong># rcp –r testnode1:/etc/cmcluster/pkg_1</strong></p>
<p><strong> </strong>On node 1</p>
<p><strong># cmcheckconf -P pkg_1.conf</strong></p>
<p><strong># cmapplyconf –P pkg_1.conf</strong></p>
<p><strong># cmmodpkg –e –n testnode1 -n testnode2 pkg_1</strong></p>
<p><strong># cmviewcl –v –p pkg_1</strong></p>
<p><strong># cmhaltpkg pkg_1</strong></p>
<p><strong># cmviewcl –v|more</strong></p>
<p><strong># tail /etc/cmcluster/pkg_1/pkg_1.log</strong></p>
<p><strong># tail /var/adm/syslog/syslog.log</strong></p>
<h2>Starting and stopping a Serviceguard Package</h2>
<p>Normally, when a cluster starts up, the packages configured as part of the cluster will start up on their configured nodes. You may need to start a package manually after it has been halted manually. You can do this either in Serviceguard Manager or on the Serviceguard command line.</p>
<p>If you want to stop a package, use the following commands</p>
<p><strong># cmviewcl –v –p &lt;package name&gt;</strong></p>
<p><strong># cmahalt &lt;package name&gt;</strong></p>
<p><strong># cmviewcl –v –p &lt;package name&gt;</strong></p>
<p>You halt a Serviceguard package when you wish to bring the package out of use but wish the node to continue in operation. You can halt a package using Serviceguard Manager or on the Serviceguard command line. Halting a package has a different effect than halting the node. When you halt the node, its failover packages may switch to adoptive nodes.</p>
<p>If you want to start a package, then use the following commands</p>
<p><strong># cmviewcl –v –p &lt;package name&gt;</strong></p>
<p><strong># cmmodpkg –e &lt;package name&gt;</strong></p>
<p><strong>OR</strong></p>
<p><strong># cmrunpkg –n &lt;host name&gt; &lt;package name&gt;</strong></p>
<p><strong># cmmodpkg –e &lt;package name&gt;</strong></p>
<h2>Deleting a Serviceguard Package</h2>
<p>To delete a package, use the following commands</p>
<p> <strong># cmdeleteconf -p &lt;package name&gt;</strong></p>
<h2>Stopping and starting the Serviceguard Cluster</h2>
<p>The cmhaltcl command can be used to halt the entire cluster. This command causes all nodes in a configured cluster to halt their Serviceguard daemons. You can use the -f option to force the cluster to halt even when packages are running.</p>
<p>To stop the cluster, use the following commands</p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;;">The cmhaltcl command can be used to halt the entire cluster. This command causes all nodes in a configured cluster to halt their Serviceguard daemons. You can use the -f option to force the cluster to </span><span style="font-size: 10pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">halt even when packages are running.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"> </span></p>
<p>To stop the cluster, use the following commands</p>
<p><strong># cmiewcl –v</strong></p>
<p><strong># cmhaltcl</strong></p>
<p><strong>OR</strong></p>
<p><strong># cmhaltcl –f</strong></p>
<p>To start the cluster: -</p>
<p><strong># cmruncl –v</strong></p>
<p><strong># cmviewcl –v</strong></p>
<h2>Automatically Restarting the Serviceguard Cluster</h2>
<p>You can configure your cluster to automatically restart after an event, such as a long-term power failure, which brought down all nodes in the cluster. This is done by setting AUTOSTART_CMCLD to 1 in the</p>
<p>/etc/rc.config.d/cmcluster file.</p>
<h2>Stopping and starting a node in the Serviceguard Cluster</h2>
<p>Starting a node will not cause any active packages to be moved to the new node. However, if a package is DOWN, has its switching enabled, and is able to run on the new node, that package will automatically run there.</p>
<p>To stop a node in the cluster</p>
<p><strong># cmhaltnode –n &lt;node name&gt;</strong></p>
<p><strong># cmviewcl –v</strong></p>
<p><strong># vi /etc/rc.config.d/cmcluster</strong></p>
<p>AUTOSTART_CMCLD=0</p>
<p>To start a node in the cluster.</p>
<p><strong># cmrunnode –n &lt;name name&gt;</strong></p>
<p><strong># cmviewcl –v</strong></p>
<p><strong># vi /etc/rc.config.d/cmcluster</strong></p>
<p>AUTOSTART_CMCLD=1</p>
<h2>Deleting a cluster</h2>
<p>When there are no packages left in the cluster, and you want to delete the  cluster, use the following commands.</p>
<p><strong># vgchange –c n vg01</strong></p>
<p><strong># cmhaltcl –f</strong></p>
<p><strong># cmdeleteconf –c &lt;cluster_name&gt;</strong></p>
<p><strong># vgchange –a y vg01</strong></p>
<p><strong># lvremove /dev/vg01/lvol1</strong></p>
<p><strong># vgremove vg01</strong></p>
<p><strong># rm –r /dev/vg01</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.neuronring.com/blogs/computer/unix-and-linux/hp-serviceguard-configuration-serviceguard-cluster-commands-cmviewcl-cmhaltpkg-cmrunpkg/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>High Availability Clustering–Types and Advantages</title>
		<link>http://blogs.neuronring.com/blogs/computer/unix-and-linux/high-availability-clustering-types-and-advantages/</link>
		<comments>http://blogs.neuronring.com/blogs/computer/unix-and-linux/high-availability-clustering-types-and-advantages/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 16:45:22 +0000</pubDate>
		<dc:creator>R Gopinath</dc:creator>
				<category><![CDATA[Unix and Linux]]></category>

		<guid isPermaLink="false">http://blogs.neuronring.com/?p=387</guid>
		<description><![CDATA[What does High Availability mean?
In terms of computers HA means a system design protocol which ensures the availability of a resource in a given amount of time or any terms of measurement.
HA-Clustering and Failover
This is a computer cluster implemented for making a resource available all the time or reducing the downtime of the resource. For [...]]]></description>
			<content:encoded><![CDATA[<h2>What does High Availability mean?</h2>
<p>In terms of computers HA means a system design protocol which ensures the availability of a resource in a given amount of time or any terms of measurement.</p>
<h2>HA-Clustering and Failover</h2>
<p>This is a computer cluster implemented for making a resource available all the time or reducing the downtime of the resource. For example, an application server serving the user requests continuously and in come point of time it stopped responding. In that time the users waiting for a response from the server should not get disappointed.</p>
<p>Here comes the clustering technology, the cluster configuration in the network transfers or redirects the user requests to the backup server. This process is called Failover.</p>
<div id="attachment_389" class="wp-caption aligncenter" style="width: 266px"><img class="size-medium wp-image-389" title="High-availability-clusters" src="http://blogs.neuronring.com/wp-content/uploads/2009/10/High-availability-clusters-256x300.gif" alt="High-availability-clustering" width="256" height="300" /><p class="wp-caption-text">High-availability-clustering</p></div>
<h2>The Clustering Software</h2>
<p>The clustering software plays main role in the successful functioning of the HA-Clusters. Everyone have a question of who maintains the information and transactions processed by the First Machine.</p>
<p>Yes, the clustering software does that for us. It will copy the last good known configuration <strong>from</strong> the machine which failed to complete its duty <strong>to</strong> the machine which is ready to serve for us.</p>
<h2>Heart Beat of Clustering</h2>
<p>HA clusters use a private Heart-Beat network. This network is responsible for monitoring the health status of all the nodes in the cluster.</p>
<div id="attachment_390" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-390" title="HA-Clustering" src="http://blogs.neuronring.com/wp-content/uploads/2009/10/HA-Clustering-300x208.png" alt="HA-Clustering" width="300" height="208" /><p class="wp-caption-text">HA-Clustering-Heart Beat</p></div>
<h2>Split-Brain in Cluster network</h2>
<p>The term “Split-Brain” technically explains the following scenario. When all the private network link goes down but the individual cluster nodes are still running, there is a possibility of confusion. Each node in the cluster may think that other node is down and will supply duplicate data. So this is a tedious configure the network to avoid split-brains.</p>
<h2>Cluster Node Configurations</h2>
<p><strong> </strong>These are the available clustering node configurations</p>
<p><strong> </strong>1.<strong> </strong><strong>Active/Active – </strong>Traffic is directed to another existing node or balanced across all other nodes</p>
<p>2.<strong> </strong><strong>Active/Passive</strong> <strong>–</strong> A complete new node is served when primary node fails</p>
<p>3.  <strong>N+1</strong> – Serving a complete new node in the place of primary node and the new node    in the cluster must be capable of handling any services which the primary node handled with/without any special additional software.</p>
<p>4. <strong>N+M</strong> – Here more than one dedicated nodes are served for handling failovers.<br />
This   may require high cost and maintenance<strong>.</strong></p>
<p>5. <strong>N-to-1</strong> – Here the backup node is serving temporarily until the primary node is brought back online. Then the running services are transferred to primary node.</p>
<p>6. <strong>N-to-N &#8212; </strong>A combination of Active/Active and N+M clusters, N to N clusters.</p>
<h2>Requirements for a High Availability Clustering Environment</h2>
<p><strong> </strong></p>
<p>The HA-Clustering is widely used technology in Data centers and Industries where adaptive infrastructure is required. This requires high investment hence this is called as costly technology.</p>
<p>Below given are the minimum requirements for setting up a HA Clustered Environment.</p>
<ol>
<li>You must be having suitable advanced application which is capable to support HA-C. Not all the applications can run in High Availability Environment.</li>
<li>The application should be capable of running its own multiple instances.</li>
<li>The application you are using in HA-C must have command line utility. i.e ability to control the app through command line interface by executing some commands.</li>
<li>The application should have the capability of using Storage Area Network (SAN).</li>
</ol>
<p>The application must be capable of storing the data in a SAN, so that even a crash occurs the other back-up node can use the saved-state of information.</p>
<h2>Applications of HA Clustering Technology</h2>
<p>So, where is this clustering more useful and applied ? HA Clustering is used for</p>
<p>1. Critical databases</p>
<p>2. File sharing networks</p>
<p>3. Business Applications</p>
<p>4. E-Commerce Websites</p>
<p><img class="aligncenter size-medium wp-image-391" title="oracle-real-application-clusters-RAC" src="http://blogs.neuronring.com/wp-content/uploads/2009/10/oracle-real-application-clusters-RAC-300x211.jpg" alt="oracle-real-application-clusters-RAC" width="300" height="211" /></p>
<h2>Some famous HA-Clustering products</h2>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="226" valign="top"><strong><span style="color: #333399;">Vendor </span></strong></td>
<td width="190" valign="top"><strong><span style="color: #333399;">Product Name </span></strong></td>
<td width="175" valign="top"><strong><span style="color: #333399;">Supported</span></strong><strong><span style="color: #333399;"> Platforms</span></strong></td>
</tr>
<tr>
<td width="226" valign="top"><strong>Hewlett-Packard</strong></td>
<td width="190" valign="top"><strong>HP ServiceGuard </strong><strong> </strong></td>
<td width="175" valign="top"><strong>HP-UX, Linux</strong></td>
</tr>
<tr>
<td width="226" valign="top"><strong>IBM </strong></td>
<td width="190" valign="top"><strong>High Availability Cluster </strong></td>
<td width="175" valign="top"><strong>AIX, Linux</strong></td>
</tr>
<tr>
<td width="226" valign="top"><strong>Open –Source </strong></td>
<td width="190" valign="top"><strong>Linux-HA </strong><strong> </strong></td>
<td width="175" valign="top"><strong>Linux</strong></td>
</tr>
<tr>
<td width="226" valign="top"><strong>Microsoft</strong></td>
<td width="190" valign="top"><strong>Microsoft Cluster Server (MSCS)</strong></td>
<td width="175" valign="top"><strong>Windows server 2008</strong></td>
</tr>
<tr>
<td width="226" valign="top"><strong>Red Hat </strong></td>
<td width="190" valign="top"><strong>Red Hat Cluster Suite</strong></td>
<td width="175" valign="top"><strong>Linux</strong></td>
</tr>
</tbody>
</table>
<p><strong>My next update in HA-Clustering would be about configuring the HA clusters in live environment.</strong></p>
<p><strong></strong></p>
<p><strong>Wait for a couple days&#8230;.</strong></p>
<p>Regards,<br />
R.Gopinath</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.neuronring.com/blogs/computer/unix-and-linux/high-availability-clustering-types-and-advantages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logical Volume Manager &#8211; LVM Configuration,pvcreate,vgdisplay,vgscan,lvcreate</title>
		<link>http://blogs.neuronring.com/blogs/computer/unix-and-linux/logical-volume-manager-lvm-configuration/</link>
		<comments>http://blogs.neuronring.com/blogs/computer/unix-and-linux/logical-volume-manager-lvm-configuration/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 06:13:59 +0000</pubDate>
		<dc:creator>R Gopinath</dc:creator>
				<category><![CDATA[Unix and Linux]]></category>

		<guid isPermaLink="false">http://blogs.neuronring.com/?p=379</guid>
		<description><![CDATA[What is  Logical Volume Manager ?
HP-UX LVM is used to manage disk space with special features like mirroring, high availability, stripping, etc. Physical volumes can be organized into a logical volume groups with equal size extent.
Each volume group can have one or more physical volumes. A system can have more than single volume groups. A [...]]]></description>
			<content:encoded><![CDATA[<p>What is  <span style="font-size: small;"><span lang="en-US"><strong>L</strong></span></span>ogical <strong>V</strong>olume <strong>M</strong>anager ?</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">HP-UX LVM is used to manage disk space with special features like mirroring, high availability, stripping, etc. Physical volumes can be organized into a logical volume groups with equal size extent.</p>
<p>Each volume group can have one or more physical volumes. A system can have more than single volume groups. A volume group can be moved from a system to another instead of physical disk.</p>
<p>A volume group can be divided into virtual disks, called logical volumes. A logical volume can span a number of physical volumes or represent only a portion of one physical volume. Disks can be added into logical volumes with different sizes.</p>
<p>The following commands are used to create, display and manipulate the LVM:</p>
<p>1. <em><span style="color: #ff0000;">pvcreate</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Creates physical volume to use in logical volume group.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <span style="font-family: Courier;"><em>pvcreate -f /dev/rdsk/c2tod1</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier;">2. </span><span lang="en-US"><span style="color: #ff0000;"><em>pvdisplay</em></span></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Displays information about physical volumes in LVM volume group.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <span style="font-family: Courier;"><em>pvdisplay </em></span><span style="font-family: Verdana;">/dev/dsk/</span><span style="font-family: Courier;"><em>c2tod1</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier;">3. </span><span style="color: #ff0000;"><em>pvmove </em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Move allocated physical extents frm one LVM physcal volume to another.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <span style="font-family: Courier;"><em>pvmove /dev/dsk/c1t0d0 PVG0</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier;">4. </span><em><span style="color: #ff0000;">vgcreate</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Creates LVM volume group.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  Create a directory for volume group. </p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><em><span style="font-family: Courier New;">mkdir /dev/vg00</span> </em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;"><em>vgcreate -s 2 /dev/vg00 /dev/dsk/c1t0d0</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">5.<em> </em></span><span style="color: #ff0000;"><em>vgdisplay</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Display information about LVM volume groups.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <span style="font-family: Courier New;"><em>vgdisplay -v /dev/vg00</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">6. </span><em><span style="color: #ff0000;">vgexport</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Export an LVM volume group and its associated logical volumes.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <span style="font-family: Courier New;"><em>vgexport -v -f vg00.outfile /dev/vg00</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">7. </span><span style="color: #ff0000;"><em>vgimport</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Import an LVM volume group onto the system.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">Syntax: <em>vgimport -v /dev/vg00 /dev/dsk/c0t1d0</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">8. </span><em><span style="color: #ff0000;">vgextend</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Extend an LVM volume group by adding physical volumes.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <span style="font-family: Courier New;"><em>vgextend /dev/vg00 /dev/dsk/c0t1d0</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">9. </span><em><span style="color: #ff0000;">vgreduce</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Remove physical volumes from an LVM volume group.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <em>vgreduce <span style="font-family: Courier New;">/dev/vg00 /dev/dsk/c0t1d0</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">10.<em> </em></span><em><span style="color: #ff0000;">vgremove</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Remove LVM logical volume group from system.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax:  <em>vgremove <span style="font-family: Courier New;">/dev/vg00 /dev/dsk/c0t1d0</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">11. </span><em><span style="color: #ff0000;">vgscan</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Scans physcal volumes for LVM volume group.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">Syntax: <em>vgscan</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">12. </span><em><span style="color: #ff0000;">lvcreate</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Creates logical volume in LVM volume group.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Syntax: </p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">lvcreate -L 100 /dev/vg03</span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">13.  <em><span style="color: #ff0000;">lvdisplay</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Displays information about logical volumes .</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;"><em>lvdisplay /dev/vg00</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">14. </span><em><span style="color: #ff0000;">lvextend</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Increase space,mirrors for logical volumes.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;"><em>lvextend -L 400 /dev/vg03</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">15.  <em><span style="color: #ff0000;">lvreduce</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Reduce number of physical extents, mirrors.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">lvreduce -L 50 <span style="font-family: Courier New;">/dev/vg03</span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">16. </span><em><span style="color: #ff0000;">lvremove</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Remove one or more logical volumes from system.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;"><em>lvremove -f /dev/vg03</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">17. </span><em><span style="color: #ff0000;">lvlnboot</span></em></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left">Prepare LVM logical volume to be root, boot, primary swap, or dump volume.</p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;"><em>lvlnboot -r /dev/vg00</em></span></p>
<p style="MARGIN-BOTTOM: 0.19in" align="left"><span style="font-family: Courier New;">18. </span><em><span style="color: #ff0000;">lvrmboot</span></em></p>
<p style="MARGIN-BOTTOM: 0in" align="left">Remove logical volume link to root, primary swap, or dump volume.</p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="font-family: Courier New;"><em>lvrmboot -r /dev/vg00</em></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="font-family: Courier New;">Regards,<br />
R.Gopinath</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.neuronring.com/blogs/computer/unix-and-linux/logical-volume-manager-lvm-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP-UX vPartition Guide – Creating vPartitions, Configuration of vpars, vpar Management</title>
		<link>http://blogs.neuronring.com/blogs/computer/unix-and-linux/hp-ux-vpartition-guide-creating-vpartitions-configuration-of-vpars-vpar-management/</link>
		<comments>http://blogs.neuronring.com/blogs/computer/unix-and-linux/hp-ux-vpartition-guide-creating-vpartitions-configuration-of-vpars-vpar-management/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 10:20:18 +0000</pubDate>
		<dc:creator>R Gopinath</dc:creator>
				<category><![CDATA[Unix and Linux]]></category>

		<guid isPermaLink="false">http://blogs.neuronring.com/?p=370</guid>
		<description><![CDATA[Introduction to vPartitions
vPars Is a Virtual Partitions product that enables you to run multiple instances of HP-UX simultaneously on one hard partition by dividing that hard partition further into virtual partitions. 
Each virtual partition is assigned its own subset of hardware, runs a separate instance of HP-UX, and hosts its own set of applications. Because [...]]]></description>
			<content:encoded><![CDATA[<h2 style="MARGIN-LEFT: 0.19in; TEXT-INDENT: -0.3in"><span style="FONT-WEIGHT: normal">Introduction to vPartitions</span></h2>
<p style="MARGIN-BOTTOM: 0in"><span style="font-size: small;"><span style="font-family: Arial, sans-serif;">vPars Is a Virtual Partitions product that enables you to run multiple instances of HP-UX simultaneously on one hard partition by dividing that hard partition further into </span><span style="font-family: Arial, sans-serif;"><strong>virtual partitions</strong></span><span style="font-family: Arial, sans-serif;">. </span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="font-family: Arial, sans-serif;"><span style="font-size: small;">Each virtual partition is assigned its own subset of hardware, runs a separate instance of HP-UX, and hosts its own set of applications. Because each instance of HP-UX is isolated from all other instances, vPars provides applicationand Operating System (OS) fault isolation.</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="font-family: Arial, sans-serif;"><span style="font-size: small;">Each instance of HP-UX can have different patches and a different kernel</span></span> .</p>
<p><span style="font-size: small; font-family: Arial;"><span style="FONT-SIZE: small; FONT-FAMILY: Arial"> </span></span></p>
<div id="attachment_373" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-373" title="vPar-Representation" src="http://blogs.neuronring.com/wp-content/uploads/2009/10/vPar-Representation-300x173.jpg" alt="vPar-Representation" width="300" height="173" /><p class="wp-caption-text">vPar-Representation</p></div>
<p> </p>
<h3 class="western" style="MARGIN-LEFT: 0.5in; TEXT-INDENT: -0.5in"><span style="color: #0000ff;"><span style="font-family: Arial, sans-serif;"><span style="font-size: medium;"><span style="FONT-WEIGHT: normal">Key Terms of vPar</span></span></span></span></h3>
<h3 class="western" style="MARGIN-LEFT: 0.5in; TEXT-INDENT: -0.5in"><span style="color: #0000ff;"><span style="font-family: Arial, sans-serif;"><span style="font-size: medium;"><span style="FONT-WEIGHT: normal"><span style="color: #000000;"> </span></p>
<p style="MARGIN-BOTTOM: 0in"><span style="color: #000000;"><strong>Complex:</strong></span></p>
<p style="MARGIN-BOTTOM: 0in"><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-weight: normal;">A </span></span></span><span style="color: #000000;"><span style="font-size: small;"><span style="font-weight: normal;">complex</span></span></span><span style="color: #000000;"><span style="font-size: small;"><strong> </strong></span></span><span style="color: #000000;"><span style="font-size: small;"><span style="font-weight: normal;">is the entire partitionable server, including both cabinets, all cells, I/O chassis, </span></span></span><span style="color: #000000;"><span style="font-size: small;">cables, and power and utility components.</span></span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><strong>Cabinet</strong></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;">A </span><span style="font-size: small;"><span style="font-weight: normal;">cabinet</span></span><span style="font-size: small;"><strong> </strong></span><span style="font-size: small;">is the Superdome hardware “box”, which contains the cells, Guardian Service Processor (GSP), internal I/O chassis, I/O fans, cabinet fans, and power supplies. </span><span style="font-size: small;">A complex has up to two cabinets.</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><strong><span style="color: #000000;">Hard partition</span></strong></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;">A </span><span style="font-size: small;"><span style="font-weight: normal;">hard partition</span></span><span style="font-size: small;"><strong> </strong></span><span style="font-size: small;">is any isolated hardware environment, such as an nPartition within a Superdome complex or an entire rp7400/N4000 server.</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;"><strong>n</strong></span><span style="font-size: small;"><strong>partition</strong></span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;">An </span><span style="font-size: small;"><span style="font-weight: normal;">nPartition</span></span><span style="font-size: small;"><strong> </strong></span><span style="font-size: small;">is a subset of a complex that divides the complex into groups of cell boards where each group operates independently of other groups. An nPartition can run a single instance of HP-UX or be further divided into virtual partitions.</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><strong><span style="color: #000000;">Virtual partition</span></strong></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;">A </span><span style="font-size: small;"><span style="font-weight: normal;">virtual partition </span></span><span style="font-size: small;">is a software partition of a hard partition that contains an instance of</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;">HP-UX. Though a hard partition can contain multiple virtual partitions, a virtual partition </span><span style="color: #000000;">cannot span a hard partition boundary.</span></p>
<p style="MARGIN-BOTTOM: 0in"><span style="color: #000000;"><span style="font-weight: normal;">vPars Monitor and Database</span></span></p>
<p style="MARGIN-BOTTOM: 0in"><span style="color: #000000;"><strong><span style="color: #000000;">vPars </span></strong></span></p>
<p style="MARGIN-BOTTOM: 0in"><span style="color: #000000;"><span style="font-size: small;">For each hard partition, the vPars </span><span style="font-size: small;"><strong>Monitor </strong></span><span style="font-size: small;">manages the assignment of hardware resources to virtual partitions, boots virtual partitions and their kernels, and emulates certain firmware calls. By emulating these specific calls, vPars creates the illusion to each HP-UX instance that it is running on a standalone server, consisting of the hardware that has been assigned to it.</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;">Once a virtual partition is launched, the Monitor transfers ownership of the hardware to the virtual partition. At that point the Monitor is not involved in accessing I/O hardware, physical memory, or process to processor cycles: the individual HP-UX instances have complete ownership of their respective hardware resources. This allows each partition to run at full speed.</span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><strong><span style="color: #000000;">vPars Partition Database</span></strong></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;">At the heart of the vPars Monitor is the </span><span style="font-size: small;"><strong>partition database</strong></span><span style="font-size: small;">. The partition database contains partition configuration information. Using the partition database, the Monitor tracks which virtual partitions exist and what hardware resources and partition attributes are associated with each partition</span><span style="font-size: small;">.</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;">When the Monitor boots , it reads a copy of the partition database from a file on the same disk from which the Monitor </span><span style="font-size: small;">/stand/vpmon </span><span style="font-size: small;">is booted. The default file is </span><span style="font-size: small;">/stand/vpdb</span><span style="font-size: small;">. Then, the Monitor creates a master copy of the vPars partition database in the memory reserved by the Monitor.</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-size: small;">The operating system of each virtual partition also keeps a local copy of the partition database in a file, by default </span><span style="font-size: small;">/stand/vpdb</span><span style="font-size: small;">, on its local boot disk</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"> </span><span style="color: #000000;"><span style="font-weight: normal;">Boot Sequence</span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;">This section describes the boot differences in a vPars system relative to a non-vPars system.</span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-family: Arial, sans-serif;"><span style="font-size: x-small;"><strong>Boot Sequence: Quick Reference</strong></span></span></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;">On a server without vPars, a simplified boot sequence is:</span></p>
<div><span style="color: #000000;"> </span></div>
<p> </p>
<div><span style="color: #000000;"></span></div>
<p> </p>
<p><span style="color: #000000;"></p>
<div id="attachment_374" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-374" title="vPar-boot-sequence" src="http://blogs.neuronring.com/wp-content/uploads/2009/10/vPar-boot-sequence-300x50.jpg" alt="vPar-boot-sequence" width="300" height="50" /><p class="wp-caption-text">vPar-boot-sequence</p></div>
<p> </p>
<p> </p>
<p></span></p>
<p style="MARGIN-BOTTOM: 0in" align="left"><span style="color: #000000;"><span style="font-family: Arial, sans-serif;"><span style="font-size: small;"><span style="FONT-WEIGHT: normal">Adding vPars adds the Monitor layer, so now </span></span></span></span><span style="color: #000000;"><span style="font-family: Arial, sans-serif;"><span style="font-size: small;"><span style="FONT-WEIGHT: normal">hpux </span></span></span></span><span style="color: #000000;"><span style="font-family: Arial, sans-serif;"><span style="font-size: small;"><span style="FONT-WEIGHT: normal">(for Integrity, </span></span></span></span><span style="color: #000000;"><span style="font-family: Arial, sans-serif;"><span style="font-size: small;"><span style="FONT-WEIGHT: normal">hpux.efi</span></span></span></span><span style="color: #000000;"><span style="font-family: Arial, sans-serif;"><span style="font-size: small;"><span style="FONT-WEIGHT: normal">) loads the Monitor. </span></span></span></span></p>
<p style="margin-bottom: 0in;" align="left"><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-weight: normal;">Then the </span></span></span><span style="font-size: small;">Monitor boots the kernels of the virtual partitions. The boot sequence becomes</span></span></p>
<div><span style="color: #000000;"> </span></div>
<p> </p>
<div><span style="color: #000000;"></span></div>
<p> </p>
<p><span style="color: #000000;"></p>
<div id="attachment_375" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-375" title="vPar-boot" src="http://blogs.neuronring.com/wp-content/uploads/2009/10/vPar-boot-300x73.jpg" alt="vPar-boot" width="300" height="73" /><p class="wp-caption-text">vPar-boot</p></div>
<p> </p>
<p> </p>
<p></span></span></span></span></span></h3>
]]></content:encoded>
			<wfw:commentRss>http://blogs.neuronring.com/blogs/computer/unix-and-linux/hp-ux-vpartition-guide-creating-vpartitions-configuration-of-vpars-vpar-management/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
